import type { NodePath } from '@babel/core'; import { ConditionalExpression, IfStatement } from 'babel-types'; type Opts = { names: string[]; }; export declare function MakeBabelTransformRemoveBlocks(opts: Opts): () => { visitor: { IfStatement(path: NodePath): void; ConditionalExpression(path: NodePath): void; }; }; export {}; //# sourceMappingURL=BabelTransformRemoveBlocks.d.ts.map