import type { DetectedFramework } from '../../config/types.js'; /** * Interface representing the detected framework and its version (if applicable) */ interface FrameworkDetection { /** The detected framework (e.g., 'sveltekit', 'nextjs', or 'unknown') */ framework: DetectedFramework; /** The version of the detected framework (if available) */ version?: string; } /** * Detects the framework being used in the project * by checking package.json and file structure * @param cwd The current working directory of the project * @returns Detected framework and its version (if applicable) */ export declare function detectFramework(cwd: string): FrameworkDetection; export {}; //# sourceMappingURL=frameworkDetector.d.ts.map