import React from 'react'; import type { TNode } from '../common'; export interface EllipsisProps { content?: string | TNode; children?: string | TNode; popupContent?: string | number | TNode; attach?: () => HTMLElement; zIndex?: number; overlayClassName?: string; classPrefix?: string; } /** 超出省略显示 */ declare function Ellipsis(props: EllipsisProps): React.JSX.Element; declare namespace Ellipsis { var displayName: string; } export default Ellipsis;