import { Diff } from "./diff-lib/deep-diff"; export declare function deepDiffTyped(lhsObj: T, rhsObj: T, orderInd?: boolean): Partial; export declare function antiDiffTyped(lhsObj: T, rhsObj: object, orderInd?: boolean): Partial; export declare function deepDiffLow(lhsObj: T, rhsObj: S, orderInd?: boolean): readonly Diff[] | false; export declare function deepDiffFlat(oldFlat: any, newFlat: any, flatten?: boolean): [any, any]; export declare function flattenObject(obj: { [key: string]: any; }): { [key: string]: any; }; export declare function unflattenObject(flatObj: { [key: string]: any; }): { [key: string]: any; }; //# sourceMappingURL=diff-high.d.ts.map