import * as React from 'react'; import './style/index.less'; declare const TagTypes: ["primary", "circle", "bubble", "corner"]; declare const CornerClass: ["lt", "rt", "lb", "rb"]; export declare type TagType = typeof TagTypes[number]; export declare type CornerType = typeof CornerClass[number]; export declare type TagEventHandler = (data: any) => void; export interface TagProps { name: string; type: TagType; color?: string; subColor?: string; width?: number; height?: number; active?: boolean; className?: string; style?: React.CSSProperties; corner?: CornerType; prefixCls?: string; onClick?: TagEventHandler; } declare const Tag: React.ForwardRefExoticComponent>; export default Tag;