import type { AgentEventSource } from "../contracts.js"; export type AgentEventSourceConformanceFactory = () => AgentEventSource | Promise; /** Assert durable append/page/replay ownership and cursor behavior without a database dependency. */ export declare function assertAgentEventSourceConforms(factory: AgentEventSourceConformanceFactory): Promise;