import type { TryNode } from '../../builtin/specialExpressions/try'; import type { SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseTry(ctx: ParserContext, token: SymbolToken): TryNode;