import type { PromptsProfileDefaultValueKeyType } from './resolveGeneratorOptions'; export type ComponentPromptsProfileType = 'basic' | 'sample' | 'advanced'; export interface ComponentSchemaType { promptsProfile: ComponentPromptsProfileType; name?: string; props?: string; events?: string; copy?: string; styles?: string; tests?: boolean | string; storybook?: boolean | string; reexport?: boolean | string; sgComponents?: string; dataTestid?: string; markupContent?: string; directory?: string; reexportIndexPath?: string; reexportRelativePath?: string; libraryShortName?: string; } export declare const ComponentPromptsProfileMapping: Readonly>; export declare const ComponentPromptsProfileDefaultValueKeyMapping: Readonly>; export declare const resolveDynamicOptions: (initialOptions: ComponentSchemaType) => Promise;