/** * Debounces rapidly changing values to reduce processing frequency * * Prevents excessive rendering and expensive operations when a value * changes frequently in a short period of time (e.g., during typing) */ export declare function useDebounce(value: T, delay: number): T; //# sourceMappingURL=useDebounce.d.ts.map