import * as React from 'react'; import { TooltipProps } from '../Tooltip'; export interface EllipsisProps { tooltip?: boolean; tooltipProps?: TooltipProps; length?: number; lines?: number; fullWidthRecognition?: boolean; className?: string; width?: number | string; style?: React.CSSProperties; prefix?: string; children: React.ReactNode; } declare const Ellipsis: { (props: EllipsisProps): JSX.Element; defaultProps: { prefix: string; fullWidthRecognition: boolean; tooltip: boolean; tooltipProps: {}; }; }; export default Ellipsis;