interface GenerateCommandOptions { task?: string; taskFile?: string; lang: string; output?: string; maxIterations?: string; verbose?: boolean; } export declare function generateCommand(options: GenerateCommandOptions): Promise; export {};