///
import type { ThrottleOptions } from '../throttle';
declare function useThrottleFn(fn: T, options?: ThrottleOptions): {
run: import("lodash").DebouncedFunc<(...args: Parameters) => ReturnType>;
cancel: () => void;
flush: () => ReturnType | undefined;
};
export default useThrottleFn;