type LegacyNormalizedFormula = {
    text: string;
    dependencies: string[];
    value?: any;
};
/**
 * parses a formula (as a string) into the same formula,
 * but with the references to other cells extracted
 *
 * =sum(a3:b1) + c3 --> =sum(|0|) + |1|
 *
 * @param formula
 */
export declare function normalizeV9(formula: string): LegacyNormalizedFormula;
export {};
