import React, { FC } from 'react'; export type ILine = { /** 行数 */ line?: number; /** inline-block 的宽度 */ width?: number; /** 要折叠的文本信息 */ children?: string; /** 是否可展开 */ foldable?: boolean; /** 可展开情况下,展开和收起的文案 */ actionText?: [string, string]; className?: string; style?: React.CSSProperties; }; declare const LineEllipsis: FC; export { LineEllipsis };