import { Blueprint } from '../blueprint'; export declare class DurableStorage { /** * Absolute path for where the durable storage is stored */ storagePath: string; blueprint: Blueprint; constructor(blueprint: Blueprint, durableStoragePathAbs: string); exists(id: string): boolean; set(id: string, jsonable: T): void; get(id: string): T | undefined; clear(id: string): void; }