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