/** * @license * Copyright (c) 2022 Handsoncode. All rights reserved. */ import { SimpleCellAddress } from '../Cell'; import { FormulaVertex } from '../DependencyGraph/FormulaCellVertex'; export declare class InterpreterState { formulaAddress: SimpleCellAddress; arraysFlag: boolean; formulaVertex?: FormulaVertex | undefined; constructor(formulaAddress: SimpleCellAddress, arraysFlag: boolean, formulaVertex?: FormulaVertex | undefined); }