import { HTMLAttributes, ReactNode } from 'react'; export interface TagProps extends Omit, 'prefix'> { /** Tag prefix */ prefix?: boolean | ReactNode; /** Css class for Tag prefix, only available when prefix type is boolean */ prefixClass?: string; /** Tag suffix */ suffix?: boolean | ReactNode; /** Css class for Tag suffix, only available when suffix type is boolean */ suffixClass?: string; } /** * Tag - cused for categorize content with a keyword. */ declare const Tag: import("react").ForwardRefExoticComponent>; export default Tag;