import { NormalCompletion } from '../completion.mts'; import { Value } from '../value.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; /** https://tc39.es/ecma262/#sec-if-statement-runtime-semantics-evaluation */ export declare function Evaluate_IfStatement({ Expression, Statement_a, Statement_b }: ParseNode.IfStatement): Generator | { readonly Type: 'return'; readonly Value: Value; readonly Target: undefined; mark(m: import("#self").GCMarker): void; } | import("#self").ThrowCompletion, import("#self").EvaluatorNextType>; //# sourceMappingURL=IfStatement.d.mts.map