/** * Cross-platform service installer for Claude Cortex dashboard auto-start. * * Supports: * - macOS: LaunchAgent plist * - Linux: systemd user service * - Windows: VBS script in Startup folder */ export declare function installService(): Promise; export declare function uninstallService(options?: { cleanLogs?: boolean; }): Promise; export declare function serviceStatus(): Promise; export declare function handleServiceCommand(subcommand: string): Promise; //# sourceMappingURL=install.d.ts.map