/** * useThrottle Hook * Throttle utility */ import type { UseThrottleOptions } from './types'; export declare const useThrottle: (callback: (value: T) => void, options: UseThrottleOptions) => ((value: T) => void); export type { UseThrottleOptions } from './types'; //# sourceMappingURL=useThrottle.d.ts.map