import type { VolumeSnapshot } from '../engine-types'; export interface IDBSnapshotCache { get(packageJsonHash: string): Promise; set(packageJsonHash: string, snapshot: VolumeSnapshot): Promise; close(): void; } export declare function openSnapshotCache(): Promise;