import { debounce } from './debounce'; type ThrottleOptionsType = { leading?: boolean; trailing?: boolean; }; export declare function throttle any>(func: T, wait: number, options?: ThrottleOptionsType): ReturnType; export {};