import * as React from 'react'; interface TagProps { text: string; color?: string; bgColor?: string; border?: string; icon?: React.ReactNode; } export interface TagListProps { prefixCls?: string; type?: 'outline' | 'enhance'; tagDatas: TagProps[]; className?: string; } declare const TagList: React.FC; export default TagList;