/** * Lightweight overflow detection without ResizeObserver. * Uses a simple one-time check on mount and when value/width changes. * This avoids the memory overhead of creating ResizeObserver per cell. */ export declare function useOverflowDetection(value: string | number | null | undefined, width?: number): { textRef: import('react').RefObject; isOverflowing: boolean; }; //# sourceMappingURL=useOverflowDetection.d.ts.map