import type { FileInfo } from '../types'; import { Fs } from './fs.js'; /** * This class extends fs and adds l10n and last modified time support */ export declare class ContentFs extends Fs { #private; cwd: string; ignored: string[]; constructor(cwd: string, ignored?: string[]); get localeFolders(): string[]; get localizationFolder(): string | undefined; getFileInfo(relativePath: string): FileInfo | { relativePath: string; realRelativePath: string; dirname: string; isVirtual: boolean; hash: string | undefined; } | undefined; exists(file: string): boolean; read(file: string, encoding?: BufferEncoding): Promise; scan(pattern?: RegExp): FileInfo[]; getLastModified(relativePath: string): Promise; } //# sourceMappingURL=content-fs.d.ts.map