/** * Generate Command * Main code generation command with streaming output */ import { GenerateOptions } from '../core/index.js'; /** * Parse command line arguments for generate command */ export declare function parseGenerateArgs(args: string[]): GenerateOptions; /** * Run generate command */ export declare function runGenerate(options: GenerateOptions): Promise;