/** * install command - Install Agentic OS into existing project * * Flow: * 1. Analyze existing project * 2. GitHub OAuth authentication * 3. Create/merge labels * 4. Auto-label existing Issues * 5. Deploy workflows (non-destructive) * 6. Link to Projects V2 */ export interface InstallOptions { dryRun?: boolean; nonInteractive?: boolean; yes?: boolean; } export declare function install(options?: InstallOptions): Promise; //# sourceMappingURL=install.d.ts.map