import { DependencyList, EffectCallback } from 'react'; /** * Debounces an effect. * If `delay` is zero, the effect is executed synchronously. * * The effect executes synchronously on the first render. */ export declare function useDebouncedEffect(effect: EffectCallback, delay?: number, deps?: DependencyList): void;