import type { Profile } from '../profiles/index.js'; import { type FileWriter } from '../services/file-writer.js'; export type OpenOrchestraIntegrationResult = { enabled: boolean; status: 'available' | 'not-installed'; path: string; files: string[]; command: string; guidance: string; }; export declare function setupOpenOrchestraIntegration(cwd: string, profiles: Profile[], writer: FileWriter): OpenOrchestraIntegrationResult;