import { n as CellAggregateFunction } from "../../values-BBN9E8dV.js"; //#region src/odb/formula/parser.d.ts type RptAggregateFunction = CellAggregateFunction; interface RptReference { readonly name: string; readonly spelling: "bracket" | "quote"; } type RptFormula = { readonly kind: "field"; readonly reference: RptReference; readonly text: string; } | { readonly kind: "hasChanged"; readonly reference: RptReference; readonly text: string; } | { readonly kind: "left"; readonly reference: RptReference; readonly length: number; readonly text: string; } | { readonly kind: "aggregate"; readonly aggregate: RptAggregateFunction; readonly reference: RptReference; readonly text: string; }; declare function parseRptFormula(formula: string): RptFormula; //#endregion export { RptAggregateFunction, RptFormula, RptReference, parseRptFormula };