import { IPath, IEqual } from './type'; export declare const createCustomEqualMap: () => { add: (path: IPath, func: Function, equalFn: IEqual) => void; remove: (path: IPath, func: Function, equalFn: IEqual) => void; collect: (oldData: T, newData: T) => { funcSet: Set; resolvedPathSet: Set; }; };