/** * A hook that throttles a value by a specified delay. * * Example: * const throttledValue = useThrottle(value, 500); */ export declare function useThrottle(value: T, delay: number): T;