/**
* Custom hook to debounce a value.
*
* @paramvalue - The value to debounce.
* @paramdelay - The delay in milliseconds to wait before updating the debounced value.
* @returns The debounced value.
*/exportdeclareconstuseDebounce: (value: any, delay: number) =>any;