import { type DependencyList, type EffectCallback } from "react";
/**
 * Deep compare effect hook.
 * Ensures the effect runs on the first render and whenever dependencies deeply change.
 *
 * @param effect The effect callback function.
 * @param deps The dependencies array to compare deeply.
 */
export default function useDeepCompareEffect(effect: EffectCallback, deps: DependencyList): void;
//# sourceMappingURL=useDeepCompareEffect.d.ts.map