import type { LiveActivityItem } from "../types.js"; import type { OutboxSummary } from "../outbox.js"; export type OutboxAdapter = { readAllItems: () => Promise; readSummary: () => Promise; }; export declare const defaultOutboxAdapter: OutboxAdapter;