import type { FormulaNode } from './parser'; import type { FormulaFunctionMap } from './functions'; import type { ValueProvider } from './provider'; export interface EvalContext { functions: FormulaFunctionMap; provider: ValueProvider; } export declare function evaluateFormula(node: FormulaNode, ctx: EvalContext): Promise;