import { DiffPatcher, DiffContext } from 'jsondiffpatch'; export declare type ObjectHash = (item: any) => string; export declare type PropertyFilter = (name: string, context: DiffContext) => boolean; export default function createDiffPatcher(objectHash: ObjectHash, propertyFilter: PropertyFilter): DiffPatcher;