import type { ExpressionStatement } from '../parser/statements.js'; import type { Execution } from './execution.js'; import type { LiteralValue } from './index.js'; export declare function runHelperExpression(execution: Execution, expression: ExpressionStatement): Promise;