import type { CasStore, Hash } from "./types.js"; /** @internal Store implementations attach this for bootstrap() only. */ export declare const BOOTSTRAP_STORE: unique symbol; export type BootstrapCapableStore = CasStore & { [BOOTSTRAP_STORE](payload: unknown): Hash; }; export declare function isBootstrapCapableStore(store: CasStore): store is BootstrapCapableStore; //# sourceMappingURL=bootstrap-capable.d.ts.map