/** * Tag component * * @author Ivan Marshalkin * @date 2020-05-28 */ import * as React from 'react'; import { INTENT, SIZE } from '../../constants'; export declare type ITagProps = { children?: React.ReactNode; color: string; isGhost?: boolean; size?: SIZE; } | { children?: React.ReactNode; intent: INTENT; isGhost?: boolean; size?: SIZE; }; export declare class Tag extends React.Component { private getStyle; render(): JSX.Element; }