import type { ProjectInfo, PackageManager } from '../types/index.js'; export declare function detectProjectContext(projectPath: string): Promise; export declare function resolveProjectPath(projectPath: string): string; export declare function detectTypeScript(projectPath: string): Promise; export declare function detectESLint(projectPath: string): Promise; export declare function detectBiome(projectPath: string): Promise; export declare function detectPrettier(projectPath: string): Promise; export declare function detectJest(projectPath: string): Promise; export declare function detectVitest(projectPath: string): Promise; export declare function detectPackageManager(projectPath: string): Promise; export declare function detectGitRepository(projectPath: string): Promise; export declare function detectClaudeConfig(projectPath: string): Promise; export declare function detectNodeVersion(): Promise; export declare function detectPackageInfo(projectPath: string): Promise<{ name?: string; version?: string; } | undefined>; export declare function detectFrameworks(projectPath: string): Promise; //# sourceMappingURL=project-detection.d.ts.map