import { default as React } from 'react';
export interface TagProps {
    text: string;
    backgroundColor?: string;
    borderColor?: string;
    textColor?: string;
    iconName?: string;
    showIcon?: boolean;
    size?: 'small' | 'medium' | 'large';
    rounded?: boolean;
}
export declare const Tag: React.FC<TagProps>;
export default Tag;
