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