import { Babel, NodePath } from './BabelTypes.js'; import { type ImportDeclaration } from 'babel-types'; import { BabelState } from './BabelState.type.js'; type Opts = { projectDir: string; absSourceDir: string; absCodeDir: string; }; export declare function MakeBabelTransformCssImports(opts: Opts): (babel: Babel) => { pre: (state: BabelState) => void; visitor: { ImportDeclaration: (path: NodePath) => void; }; }; export {}; //# sourceMappingURL=BabelTransformCssImports.d.ts.map