import React from 'react'; import { TagProps as AntdTagProps } from 'antd/es/tag'; import CheckableTag from './CheckableTag'; export type { CheckableTagProps } from './CheckableTag'; export interface TagProps extends AntdTagProps { size?: 'xs' | 'small' | 'middle' | 'large'; type?: 'default' | 'outline' | 'solid'; disabled?: boolean; rounded?: boolean; } export interface TagType extends React.ForwardRefExoticComponent> { CheckableTag: typeof CheckableTag; } declare const Tag: TagType; export { Tag }; export default Tag;