/**
* 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
*/declarefunctionuseThrottle<T>(value: T, interval: number): T;
export { useThrottle };