import type { FileNode } from '../types/index.js'; export declare function readFileContent(filePath: string): Promise; export declare function fileExists(filePath: string): Promise; export declare function getFileStats(filePath: string): Promise<{ size: number; lines: number; }>; export declare function getFileExtension(filePath: string): string; export declare function detectLanguage(filePath: string): string; export declare function findFiles(directory: string, pattern: string | string[], options?: { ignore?: string[]; }): Promise; export declare function buildFileTree(directory: string, maxDepth?: number, currentDepth?: number): Promise; export declare function getDirectorySize(directory: string): Promise; //# sourceMappingURL=file-utils.d.ts.map