export interface LanguageStat { name: string; files: number; percentage: number; icon: string; } export declare function detectLanguage(filePath: string): string; export declare function getLanguageIcon(filePath: string): string; export declare function isConfigFile(filePath: string): boolean; export declare function isTestFile(filePath: string): boolean; export declare function isEntryPoint(filePath: string): boolean; export declare function calculateLanguageStats(files: string[]): LanguageStat[]; export declare const FRAMEWORK_INDICATORS: Record; //# sourceMappingURL=language-detector.d.ts.map