import { DebounceOptions } from '../utils'; import { AnyFunction } from '../base'; export declare function useThrottle(callback: AnyFunction, wait: number, options?: DebounceOptions): { (...args: any[]): any; cancel: () => void; flush: () => any; pending: () => boolean; };