/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { FC, HTMLAttributes, ReactNode } from 'react';
interface OverflowContainerProps {
    isSingleLine?: boolean;
    chilren?: ReactNode;
}
/**
 * __Overflow container__
 */
declare const OverflowContainer: FC<OverflowContainerProps & HTMLAttributes<HTMLSpanElement>>;
export default OverflowContainer;
