export declare const d2FuctionsVariables: Array<{ name: string; parameters?: number; }>; type D2EvalResult = { expression: string; expressionUpdated: boolean; }; type D2EvalFn = (expression: string, parameters: string[], variableHash: Record, regexFunct: string) => D2EvalResult; export declare const d2FunctionsEval: Record; export {};