import type { AbsolutePath, AsyncMutable, GetOptions, RangeQuery } from "./types.js"; declare class FileSystemStore implements AsyncMutable { root: string; constructor(root: string); get(key: AbsolutePath, opts?: GetOptions): Promise; getRange(key: AbsolutePath, range: RangeQuery, opts?: GetOptions): Promise; has(key: AbsolutePath): Promise; set(key: AbsolutePath, value: Uint8Array): Promise; delete(key: AbsolutePath): Promise; } export default FileSystemStore; //# sourceMappingURL=fs.d.ts.map