import { NodePath, types } from '@babel/core';
import type { CorePluginState, CorePluginOptions } from './types';
export default function babelPluginWriteCss(babel: {
    types: typeof types;
}, options: CorePluginOptions): {
    name: string;
    visitor: {
        Program: {
            enter(nodePath: NodePath<types.Program>, state: CorePluginState): void;
            exit(nodePath: NodePath<types.Program>, state: CorePluginState): void;
        };
    };
};
