/** * Returns a debounced copy of a value that only updates after it has stopped * changing for `delayMs`. Useful for search inputs and other rapid updates. * @template T The value type. * @param {T} value - The source value. * @param {number} delayMs - Quiet period before the debounced value updates. * @returns {T} The debounced value. */ export declare const useDebouncedValue: (value: T, delayMs: number) => T; //# sourceMappingURL=useDebouncedValue.d.ts.map