import * as ts from 'typescript'; interface ModuleConfig { moduleName: string; includesSubPath?: boolean; exportedNames: string[]; styledName?: string; hasDefaultExport?: boolean; } export interface Options { sourcemap?: boolean; autoLabel?: boolean; labelFormat?: string; autoInject?: boolean; customModules?: ModuleConfig[]; jsxFactory?: string; jsxImportSource?: string; } export declare function createEmotionPlugin(pluginOptions?: Options): ts.TransformerFactory; export {};