import { FsAccessModel } from "../internal.types.cjs"; import { WritableAccessModel } from "./index.cjs"; export declare class MemoryAccessModel implements FsAccessModel, WritableAccessModel { mTimes: Map; mData: Map; constructor(); reset(): void; insertFile(path: string, data: Uint8Array, mtime: Date): void; removeFile(path: string): void; getMTime(path: string): Date | undefined; isFile(): boolean | undefined; getRealPath(path: string): string | undefined; readAll(path: string): Uint8Array | undefined; } //# sourceMappingURL=memory.d.mts.map