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