import type { EnvironmentStatus } from '../types/index.js'; import { type DetectedIDE } from './config-profiles.js'; export declare function checkEnvironment(cwd: string): EnvironmentStatus; /** * Detect ALL IDEs present in the workspace and globally. * Returns an array of detected IDEs sorted by confidence (highest first). * Uses data-driven IDE profiles rather than hardcoded paths. */ export declare function detectAllIDEs(cwd: string): DetectedIDE[]; export declare function validateEnvironment(env: EnvironmentStatus): string[]; //# sourceMappingURL=env-check.d.ts.map