interface InitOptions { yes?: boolean; projectName?: string; clientName?: string; clientEmail?: string; hourlyRate?: string; scope?: string; devEmail?: string; previewUrl?: string; slackWebhook?: string; notifyChannel?: 'email' | 'slack' | 'none'; stripeEnabled?: boolean; } export declare function initCommand(opts?: InitOptions): Promise; export {};