/** * Behaves the same as useMemo, except only updates when values are deeply different instead of shallowly * @param getVal The function to retrieve the value * @param dependencies The dependencies * @param depth The depth to which to check equality * @returns The memoed value */ export declare const useDeepMemo: (getVal: () => T, deps: any[], depth?: number) => T; //# sourceMappingURL=useDeepMemo.d.ts.map