import { Parser } from 'expr-eval'; export declare function getParser(): Parser; export interface Expression { variables(options?: { withMembers?: boolean; }): string[]; evaluate(params: Record): number; substitute(variable: string, replacement: string): Expression; } //# sourceMappingURL=parser.d.ts.map