MsgBurn: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): MsgBurn;
    encode(message: MsgBurn, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: MsgBurnAmino): MsgBurn;
    fromAminoMsg(object: MsgBurnAminoMsg): MsgBurn;
    fromPartial(object: {
        amount?: {
            amount?: string;
            denom?: string;
        };
        sender?: string;
    }): MsgBurn;
    fromProtoMsg(message: MsgBurnProtoMsg): MsgBurn;
    toAmino(message: MsgBurn): MsgBurnAmino;
    toProto(message: MsgBurn): Uint8Array;
    toProtoMsg(message: MsgBurn): MsgBurnProtoMsg;
}