import type { DirectoryEntry, FileStats, FileSystemProvider, FileSystemProviderOptions } from './provider.js'; /** * Node.js file system provider implementation * Uses the node:fs module for file operations */ export declare class NodeFileSystemProvider implements FileSystemProvider { readonly _options: FileSystemProviderOptions; constructor(_options?: FileSystemProviderOptions); exists(path: string): boolean; readdir(path: string): Promise; readFile(path: string): Promise; readFileAsBuffer(path: string): Promise; stat(path: string): Promise; join(...paths: string[]): string; normalize(path: string): string; }