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