import * as React from 'react'; import { StandardProps } from '../../common'; export declare type TagType = 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'disabled' | 'none'; export interface TagProps extends StandardProps { /** * Event fired when the tag was clicked. */ onClick?(): void; /** * The type of the tag, which is primary by default. * @default primary */ type?: TagType; /** * The content of the tag. */ children?: React.ReactNode; } /** * The tag component represents a simple block with a typed color and content. */ export declare const Tag: React.SFC & { inner: { readonly StyledTag: any; }; };