/** * Setup command for VC-SYS CLI * Initializes project with Claude Code integration */ import { Command } from 'commander'; /** * Create setup command */ export declare function createSetupCommand(): Command; /** * Handle setup command with structured output for Claude Code */ export declare function handleSetup(options: { force?: boolean; }): Promise; /** * Check if current directory is suitable for VC-SYS setup */ export declare function validateSetupDirectory(): Promise<{ valid: boolean; issues: string[]; }>;