interface AddCommandOptions { overwrite?: boolean; dryRun?: boolean; yes?: boolean; npm?: boolean; yarn?: boolean; pnpm?: boolean; bun?: boolean; } export declare function addCommand(components: string[], options: AddCommandOptions): Promise; export {};