/** * Determines if the content of an element is visually truncated. * * Utilizes a `ResizeObserver` to update the truncated state when the element's size changes. * * @param enabled – Set to `false` to pause observation (e.g., when the element is expanded). * The last known value is preserved while paused. */ export declare function useIsTruncated(enabled?: boolean): { ref: (el: HTMLElement | null) => void; isTruncated: boolean; }; //# sourceMappingURL=use-is-truncated.d.ts.map