export declare function buildFunctionWithContext(evalString: string, context: Record): string; export declare function buildEvaluator(evalString: string, context: Record): any; export declare function runInContext(text: string, context?: Record): T; export declare function withGlobalBindings(globals: Record, callback: () => Promise): Promise;