import React from 'react'; import { EllipsisProps, EllipsisRef } from './type'; export * from './type'; /** * 文本缩略组件,支持多行缩略、富文本、自定义缩略符、尾字符过滤等。如果传入的文本内容中包含换行符号`\n`,建议将`\n`替换为`
`,并设置`dangerouslyUseInnerHTML=true`。 * @en Text ellipsis component supports multi-line abbreviations, rich text, custom abbreviations, tail character filtering, etc. If the incoming text contains newline characters `\n`, it is recommended to replace `\n` with `
`, and set `dangerouslyUseInnerHTML=true`. * @type 信息展示 * @type_en Data Display * @name 文本缩略 * @name_en Ellipsis */ declare const Ellipsis: React.ForwardRefExoticComponent>; export default Ellipsis;