import type { ThrottleOptions } from "../useThrottle"; declare type noop = (...args: any) => any; declare function useThrottleFn(fn: T, options?: ThrottleOptions): { run: import("vue").ComputedRef) => ReturnType>>; cancel: () => void; flush: () => ReturnType | undefined; }; export default useThrottleFn;