/**
 * Hook that throttles a value
 * @param value - The value to throttle
 * @param interval - The minimum time interval between updates in milliseconds
 * @returns The throttled value
 */
declare function useThrottle<T>(value: T, interval: number): T;

export { useThrottle };
