interface MaintenanceConfig { projectPath: string; analysisId?: string; teamSize: number; updateFrequency: 'daily' | 'weekly' | 'biweekly' | 'monthly'; includeChecklists?: boolean; includeMetrics?: boolean; includeTraining?: boolean; } interface MaintenanceResult { success: boolean; filesCreated: string[]; message: string; workflows: { regular: string[]; emergency: string[]; onboarding: string[]; }; } export declare function createMaintenanceWorkflows(config: MaintenanceConfig): Promise; export {}; //# sourceMappingURL=create-maintenance-workflows.d.ts.map