/** * Evaluate an Excel-style formula with the given inputs. * * @param formula - The formula to evaluate (e.g., "=count>5", "=AND(a>1, b<10)") * @param inputs - Map of variable names to their values * @param cache - Optional map used to cache the HyperFormula instance across * calls within the same render pass. When provided, the instance is created * once and reused, avoiding the overhead of construction/destruction on every * `` evaluation. The caller is responsible for discarding the map (and * thereby the cached instance) when the render pass completes. * @returns The boolean result of the formula evaluation */ export declare function evaluateFormula(formula: string, inputs: Map, cache?: Map): boolean; //# sourceMappingURL=formula-parser.d.ts.map