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