import { DebouncedFunc } from "lodash"; type Callback = (...args: any[]) => void; declare const useThrottle: (callback: T, delay: number) => DebouncedFunc; export default useThrottle;