import type { Version, Change, ChangeConflict } from "../database/schema.js"; import type { Lix } from "../lix/open-lix.js"; /** * Creates a new change conflict with the given conflicting changes. * * @param args.key - The key of the change conflict. * @param args.conflictingChanges - The conflicting changes. */ export declare function createChangeConflict(args: { lix: Pick; key: string; version: Pick; conflictingChangeIds: Set; }): Promise; //# sourceMappingURL=create-change-conflict.d.ts.map