import * as cartiLib from "@createdreamtech/carti-core"; import { CID } from "multiformats"; export declare class CartiBundleStorage extends cartiLib.Storage { diskProvider: cartiLib.DiskProvider; constructor(dir: string); path(cid: CID): Promise; } export interface BundlePath { local?: string; global?: string; } export declare class CartiBundleStorageSystem { global: CartiBundleStorage; local: CartiBundleStorage; constructor(global: CartiBundleStorage, local: CartiBundleStorage); path(cid: CID): Promise; }