/** * A hook that wraps a callback function and prevents it from being called * more than once within the specified timeout period. * * @param callback The function to throttle * @param timeout The timeout in milliseconds * @returns A throttled version of the callback */ export declare function useThrottledCallback(callback: (...args: any[]) => void, timeout: number): (...args: any[]) => void; //# sourceMappingURL=useThrottledCallback.d.ts.map