import React from 'react'; import type { TagProps } from 'antd/lib/tag'; declare const WrapperTag: ({ children }: Record) => React.DetailedReactHTMLElement<{ className: string; }, HTMLElement>; export interface MyTagProps extends Omit { name?: string; tagType?: any; visible?: boolean; checkable?: boolean; checkedStatus?: boolean; onClick?: (checked: boolean) => void; } declare const MyTag: React.ForwardRefExoticComponent>; export default MyTag; export { WrapperTag };