/** * `value` after it has stopped changing for `delayMs`, plus whether it has * settled. The flag matters as much as the value: it lets a caller hold off * work mid-typing rather than firing on an amount the user is still editing. */ export declare function useDebouncedValue(value: T, delayMs: number): { debounced: T; isSettled: boolean; }; //# sourceMappingURL=useDebouncedValue.d.ts.map