export declare enum StylingOptions { CSS = "css", SCSS = "scss", STYLED = "styled-components", NONE = "none" } export interface ComponentGeneratorArguments { name: string; typescript: boolean; style: string; output: string; storybook: boolean; test: boolean; exportType: string; includeIndex: boolean; translations: boolean; } declare const componentGenerator: (argv: ComponentGeneratorArguments) => Promise; export { componentGenerator };