/** Default delay for free-text search → server/URL (table, kanban, relation). */ export declare const SEARCH_DEBOUNCE_MS = 350; /** * Returns `value` delayed by `ms`. The input stays live; only the returned * value lags — use it for fetches and URL sync so typing does not thrash. */ export declare function useDebouncedValue(value: T, ms?: number): T; //# sourceMappingURL=use-debounced-value.d.ts.map