import type { RAMAttrs } from '../ram/store.ts'; export declare class DevFiles extends Map { private readonly tombstones; private syntheticActive; private syntheticBytes; deviceOf(key: string): string | null; has(key: string): boolean; get(key: string): Uint8Array | undefined; set(key: string, value: Uint8Array): this; delete(key: string): boolean; clear(): void; get size(): number; keys(): MapIterator; values(): MapIterator; entries(): MapIterator<[string, Uint8Array]>; [Symbol.iterator](): MapIterator<[string, Uint8Array]>; forEach(callback: (value: Uint8Array, key: string, map: Map) => void, thisArg?: unknown): void; } export declare class DevStore { readonly files: Map; readonly dirs: Set; readonly modified: Map; readonly attrs: Map; } //# sourceMappingURL=store.d.ts.map