import { OverflowProps } from './Overflow';
import { OverflowText, OverflowTextProps } from './OverflowText';
/**
* Overflow component for handling content that exceeds container boundaries.
*
* Features:
* - Supports both horizontal and vertical overflow
* - Automatic shadow indicators for scrollable content
* - Truncation with expand/collapse functionality
* - Keyboard navigation support for focusable elements
* - Automatic height and width management
* - Layout utility props support
* - Resize observer for dynamic content changes
* - Accessibility features with proper focus management
* - Scroll event handling with shadow updates
*
* @example
*
* {items.map((item, i) => (
*
* {item.content}
*
* ))}
*
*/
export declare const Overflow: import('react').ForwardRefExoticComponent> & {
Text: import('react').ForwardRefExoticComponent>;
};
export default Overflow;
export { type OverflowProps };
export { OverflowText, type OverflowTextProps };