interface CreateCommandOptions { name?: string; framework?: string; database?: string; language?: string; features?: string; auth?: string; output?: string; plannerModel?: string; coordinatorModel?: string; codeModel?: string; reviewModel?: string; testModel?: string; skipBuild?: boolean; maxBuildRepairs?: string; autoApprove?: boolean; skipFunctionalTesting?: boolean; } export declare function runtimeCreateCommand(description: string, opts: CreateCommandOptions): Promise; export {};