import type { EventBus } from '../kernel/events.js'; import type { ChronicleContext } from './context.js'; import type { ChronicleJournal } from './journal.js'; import type { ChronicleEventInput } from './types.js'; export interface ChronicleDomainAdapterOptions { events: EventBus; journal: ChronicleJournal; context: ChronicleContext | (() => ChronicleContext); onPersistError?: ((error: unknown, event: ChronicleEventInput) => void) | undefined; } /** Allowlisted coding-signal bridge for domains not owned by a richer adapter. */ export declare function wireDomainEventsToChronicle(options: ChronicleDomainAdapterOptions): () => void; //# sourceMappingURL=domain-adapter.d.ts.map