import { ConflictHandlerOptions } from "./ConflictHandlerOptions"; /** * Filtered conflict handler enables tree stage conflict resolution: * * - checks if data conflicts exist * - perform resolution for conflicts or merge data otherwise * - notify listeners about merge/conflict */ export declare class ConflictHandler { conflicted: boolean; private clientDiff; private serverDiff; private options; private ignoredKeys; constructor(options: ConflictHandlerOptions); /** * Executes the supplied strategy for each handler */ executeStrategy(): any; private checkConflict; }