/** * IDE Detection * * Detects installed AI coding tools by checking for their config directories. * Supports Windows, macOS, and Linux paths. */ export interface IDE { name: string; configPath: string; } export declare function detectIDEs(): Promise; //# sourceMappingURL=detect-ides.d.ts.map