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