import type { Entry } from '../core/EntrySchema.js'; import type { Clock } from '../shared/Clock.js'; /** Maximum number of conflict_log entries to retain per entry. */ export declare const CONFLICT_LOG_MAX = 200; export declare class ConflictResolver { merge(local: Entry[], remote: Entry[], clock: Clock): Entry[]; }