import type { CondNode } from '../../builtin/specialExpressions/cond'; import { type SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseCond(ctx: ParserContext, token: SymbolToken): CondNode;