import type { EvaluatorArgs } from './helpers'; type EvalValue = unknown; export declare const getSimpleExpressionGetPath: (code: string) => string; export declare function evaluate({ code, context, localState, rootState, rootSetState, event, isExpression, trackingContext }: EvaluatorArgs): EvalValue; export {};