import { type DependencyList } from 'react'; export type DebouncedFunction any> = (this: ThisParameterType, ...args: Parameters) => void; export declare function useDebouncedCallback any>(callback: Fn, deps: DependencyList, delay: number, maxWait?: number): DebouncedFunction;