import { type SessionLog } from '../store/session-log/index.js'; import type { TenantId } from '../types/ids/index.js'; import type { SessionMessage } from '../types/session/messages.js'; /** * A session's conversation as {@link SessionMessage}s: the fold of its log * (with every `message_replaced` applied), each message carrying the id and * time of its record. A compaction summary message has no record of its own * and carries the compaction's time and no id of its own; it is skipped. */ export declare function readSessionMessages(log: SessionLog, tenantId: TenantId): Promise; //# sourceMappingURL=messages.d.ts.map