import { type DependencyList } from "react"; /** * Like `useMemo`, but compares dependencies by deep value equality * instead of strict reference equality. Useful when a dependency is an object/array * literal that is recreated each render but contains the identical contents. * * @param factory - The function that computes the value * @param deps - The dependencies array * @returns The memoized value */ export declare function useDeepMemo(factory: () => T, deps: DependencyList): T;