/** * Bounded, non-consuming listing for the application delivery outbox * (WFT-85): walking the sequence-ordered index rather than the delivery * records, so `limit` bounds the storage reads and not only the returned * slice. * * @module core/outbox-listing */ import type { ApplicationDeliveryReceipt, OutboxListOptions } from './outbox-contract.ts'; import { type OutboxRuntime } from './outbox-internals.ts'; /** List receipts in enqueue order, bounded by `limit` and the scan ceiling. */ export declare function listDeliveries(runtime: OutboxRuntime, options: OutboxListOptions | undefined): Promise;