import { ProjectFile } from '../types'; export declare function scanDirectory(dirPath: string): ProjectFile[]; export declare function readFileContent(filePath: string): string; export declare function writeFileContent(filePath: string, content: string): void; export declare function ensureDir(dirPath: string): void; export declare function getDirectories(dirPath: string): string[]; export declare function countLines(filePath: string): number; export declare function findEntryPoints(projectPath: string): string[]; export declare function findConfigFiles(projectPath: string): string[]; export declare function detectPackageManager(projectPath: string): 'npm' | 'yarn' | 'pnpm'; export declare function loadPackageJson(projectPath: string): Record | null; //# sourceMappingURL=file-utils.d.ts.map