export type Workspace = { location: string; name: string; }; interface IWatchOptions { activeWatchConfig?: string[]; message?: string; min?: number; workspaces: Workspace[]; } export declare const watchPrompt: ({ activeWatchConfig, message, min, workspaces }: IWatchOptions) => Promise<{ watch: string[]; }>; export interface IConfig { bundles: Record; } export declare const componentsPrompt: (components: string[], projectConfig: IConfig) => Promise<{ components: string[]; }>; export {};