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