import { HTMLAttributes } from 'react';
declare type IProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & {
    children: string;
};
declare function Truncated({ children, className, ...props }: IProps): JSX.Element;
export default Truncated;
