import type { Context } from "./interpreter"; /** * Evaluate an expression with a given context * @param expression - The expression to evaluate * @param context - The context to use for evaluation * @returns The result of evaluating the expression */ export declare function evaluate(expression: string, context?: Context): any;