import { PluginObj, types as BabelTypes } from '@babel/core'; interface PluginState { file: { path: { unshiftContainer: (key: string, node: BabelTypes.Statement | BabelTypes.Statement[]) => void; }; }; } /** * Babel plugin that transforms elements to import declarations. */ export declare function usesToImportPlugin({ types: t }: { types: typeof BabelTypes; }): PluginObj; export {}; //# sourceMappingURL=uses-to-import.d.ts.map