export interface CrewConfig { name: string; description: string; template?: string; strategy: string; agents: string[]; maxConcurrent?: number; timeout?: number; } export declare function createCrewCommand(): Promise; export declare function listCrewsCommand(): void; export declare function getCrewCommand(name: string): void; export declare function deleteCrewCommand(name: string): Promise; export declare function showCrewTemplatesCommand(): void; export declare function showStrategiesCommand(): void; //# sourceMappingURL=crews.d.ts.map