export declare class FileUtils { static exists(filePath: string): Promise; static readJson(filePath: string): Promise; static writeJson(filePath: string, data: unknown): Promise; static ensureDir(dirPath: string): Promise; static findFiles(patterns: string[], cwd?: string): Promise; static getFileExtension(filePath: string): string; static getFileName(filePath: string): string; static getFileStats(filePath: string): Promise<{ size: number; modified: Date; }>; static relativePath(from: string, to: string): string; static resolvePath(...paths: string[]): string; } //# sourceMappingURL=file-utils.d.ts.map