import type { AstNode } from '../types'; import type { ParserContext } from '../ParserContext'; type ImplicitBlockEnd = 'end' | 'else' | 'catch' | 'case'; export declare function parseImplicitBlock(ctx: ParserContext, ends: ImplicitBlockEnd[]): AstNode; export {};