/** * Hook to debounce a value. Returns the debounced value after the specified delay. * * @param value - The value to debounce * @param delay - Delay in milliseconds before updating the debounced value * @returns The debounced value */ export declare function useDebounce(value: T, delay: number): T;