import { FC } from 'react'; import { DescriptionsItemProps } from '@firesoon/antd/lib/descriptions'; import { TextProps } from '../Text/interface'; interface ItemProps extends Omit, TextProps { } /** 对外暴露Item承接,实际作用就是增加props */ declare const Item: FC; export default Item;