declare type ComponentCreator = { component: string; app: string; module: string; prependToComponent?: string; imports?: string; style?: 'scss' | 'styled' | 'all'; }; export default function createComponent({ style, prependToComponent, imports, module, app, component }: ComponentCreator): void; export {}; //# sourceMappingURL=createComponent.d.ts.map