import { VessPaths } from '../config/paths'; export interface InstallOptions { paths?: VessPaths; /** Override Claude Code config path (for testing) */ claudeConfigPath?: string; /** Skip interactive confirmation (for testing or programmatic use) */ skipConfirm?: boolean; /** Force daemon (HTTP) or stdio mode. When undefined, auto-detect from daemon PID. */ daemonMode?: boolean; /** Port to use for daemon HTTP mode (default: 3100). Only used when daemonMode=true. */ daemonPort?: number; } export declare function runInstall(options?: InstallOptions): Promise; //# sourceMappingURL=install.d.ts.map