import type { LoopNode } from '../../builtin/specialExpressions/loop'; import type { SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseLoop(ctx: ParserContext, firstToken: SymbolToken): LoopNode;