export declare const browserScalarFunctionArities: Map; export declare function normalizeSpreadsheetFunctionName(name: string): string; /** * Evaluate the bounded browser implementation of `SUBTOTAL`. * * Fortune delegates unknown functions to Formula.js. Formula.js returns an * undefined value for an unknown function number, which the parser can then * coerce into a boolean. Keeping this small implementation here makes the * JavaScript fallback deterministic and aligned with the Rust kernel. The * calculation request does not carry hidden-row metadata yet, so the 1–11 * and 101–111 function-number families intentionally have the same result. */ export declare function evaluateParserSubtotal(parameters: readonly unknown[]): unknown; export declare function normalizeFormulaForFortuneParser(formula: string): string;