import { FileSystemAdapter } from '../types'; export declare class NodeFileSystemAdapter implements FileSystemAdapter { readFile(filePath: string): Promise; writeFile(filePath: string, content: string): Promise; readdir(dirPath: string): Promise; exists(filePath: string): Promise; isDirectory(filePath: string): Promise; glob(pattern: string, options?: any): Promise; private basicGlob; private walkDirectory; private matchesPattern; } //# sourceMappingURL=filesystem.d.ts.map