export interface ThrottleOptions { wait?: number; leading?: boolean; trailing?: boolean; } declare function useThrottle(value: T, options?: ThrottleOptions): T; export default useThrottle;