export interface ExpressionRuntime { run(expression: string, context: Record): any; getBuiltinIdentifiers(): Set; } export interface PendingExecution { provide(symbol: string, value: any): PendingExecution; canExecute(): boolean; execute(): boolean; } //# sourceMappingURL=types.d.ts.map