import { VessPaths } from '../config/paths'; export interface InitOptions { paths?: VessPaths; gatewayUrl?: string; /** Skip interactive prompts (for testing) */ skipPrompt?: boolean; /** Force re-initialization even if already set up */ forceReinit?: boolean; /** Skip daemon installation (use stdio mode instead) */ noDaemon?: boolean; /** Skip Claude Code MCP registration */ noInstall?: boolean; /** Override Claude Code config path (for testing) */ claudeConfigPath?: string; /** Override home directory for service manager (for testing) */ homeDir?: string; } export declare function runInit(options?: InitOptions): Promise; //# sourceMappingURL=init.d.ts.map