import { TaskManagementService } from '../services/task-management.service'; import { ResultFormatterService } from '../services/result-formatter.service'; import { TemplateService } from '../services/template.service'; export interface InitOptions { config?: string; workingDirectory?: string; force?: boolean; template?: string; templateVersion?: string; skipMcp?: boolean; } export declare class InitHandler { private readonly taskManagementService; private readonly resultFormatterService; private readonly templateService; constructor(taskManagementService: TaskManagementService, resultFormatterService: ResultFormatterService, templateService: TemplateService); handle(options?: InitOptions): Promise<{ success: boolean; message: string; taskId: string; }>; private generateDefaultAgentsConfig; private formatSuccessMessage; } import { CliOptions } from '../cli-options'; export declare function handleInit(app: any, args: CliOptions): Promise;