import { createPinboard } from "./server.js"; //#region src/memory-durability.d.ts /** In-memory marked-rows index for tests and embedded runs. */ declare class MemoryDurabilityStore implements createPinboard.DurabilityStore { readonly rows: Map; private key; add(env: string, hostname: string, ns: string, id: string): void; remove(env: string, ns: string, id: string): void; listMarked(cursor: string | null, limit: number): Promise<{ entries: { env: string; hostname: string; ns: string; id: string; }[]; cursor: string | null; }>; } //#endregion export { MemoryDurabilityStore }; //# sourceMappingURL=memory-durability.d.ts.map