export interface PatchObject {
    path: string[];
    operation: "add" | "remove" | "replace";
    value?: any;
    previousValue?: any;
}
export declare function compare(tree1: any, tree2: any): any[];
