import type { ThrottleOptions } from '../useThrottle/throttleOptions'; type noop = (...args: any) => any; declare function useThrottleFn(fn: T, options?: ThrottleOptions): { run: T; cancel: any; flush: any; }; export default useThrottleFn;