import type { Entry, FieldDefinition } from './types.js'; export declare function evaluateFormula(expr: string, fields: Record): number | undefined; export declare function parseFields(raw: unknown): FieldDefinition[]; export declare function schemaFields(facts: { e: string; a: string; v: unknown; }[], names: string[]): FieldDefinition[]; export declare function applyFormulas>(entry: Entry, defs: FieldDefinition[]): Entry; //# sourceMappingURL=formula.d.ts.map