export type GapCategory = 'detected' | 'migratable' | 'blocked-by-parser' | 'blocked-by-codegen' | 'needs-new-node'; export type GapClassification = { category: GapCategory; migration?: string; }; export declare function isInlineSafeLiteral(text: string): boolean; export declare function isInlineSafeExpression(text: string): boolean; export declare function classifyHandlerGap(parentType: string | undefined, body: string): GapClassification;