/** * @fileoverview Node.js/Bun filesystem provider for WASI host * * Uses node:fs with manual position tracking since Node lacks seekSync. * Bun implements node:fs faithfully, so this provider covers both. */ import type { FileSystemProvider } from "./wasi-fs-provider.js"; export declare function createNodeFsProvider(): Promise; //# sourceMappingURL=wasi-fs-node.d.ts.map