/**
 * A hook to throttle function calls.
 * @param callback The function to throttle.
 * @param delay The throttle delay in milliseconds.
 * @returns A throttled version of the provided function.
 */
declare const useThrottle: <T extends (...args: any[]) => any>(callback: T, delay: number) => ((...args: Parameters<T>) => void);
export default useThrottle;
//# sourceMappingURL=use-throttle.d.ts.map