import { Stat, RandomAccessFileSystem } from '@loaders.gl/loader-utils'; import { NodeFile } from "./node-file.js"; /** * FileSystem pass-through for Node.js * Compatible with BrowserFileSystem. * @param options */ export declare class NodeFileSystem implements RandomAccessFileSystem { readable: boolean; writable: boolean; constructor(); readdir(dirname?: string, options?: {}): Promise; stat(path: string): Promise; unlink(path: string): Promise; fetch(path: string, options: RequestInit): Promise; openReadableFile(path: string, flags?: 'r'): Promise; openWritableFile(path: string, flags?: 'w' | 'wx', mode?: any): Promise; } //# sourceMappingURL=node-filesystem.d.ts.map