import * as React from 'react'; import './index.scss'; export interface ColorfulTextProps { /** * 类型 */ title?: 'string'; description?: 'string'; type?: 'string'; dataSource: any[]; } declare const ColorfulText: React.FC; export default ColorfulText;