export declare type AiTool = 'claude' | 'copilot' | 'cursor' | 'gemini' | 'junie' | 'windsurf'; export interface AiConfigSchema { tool?: string; targetProject?: string; overwrite?: boolean; } export interface AiConfigFile { path: string; content: string; }