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