import type { DeliveryStore } from '../delivery.js'; export interface DeliveryStoreConformanceOptions { readonly name: string; readonly create: () => Promise; /** * Optional factory returning a store with an injectable yield hook * fired inside the critical section of `claimDueDeliveries`. Enables * the concurrent-claim property test; the test is skipped if omitted. */ readonly createWithYield?: (yieldHook: () => Promise) => Promise; } export declare function runDeliveryStoreConformance(options: DeliveryStoreConformanceOptions): void; //# sourceMappingURL=delivery-conformance.d.ts.map