import type { MatchNode } from '../../builtin/specialExpressions/match'; import { type SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseMatch(ctx: ParserContext, token: SymbolToken): MatchNode;