import { CSSProperties } from 'glamor';
import { ThemeColors } from '../styles/defaults/themes.interface';
import React from 'react';
export interface TagStyles {
    container?: CSSProperties;
}
export interface TagProps {
    backgroundColor?: keyof ThemeColors;
    foregroundColor?: keyof ThemeColors;
    children: React.ReactNode;
    label?: string;
    styleOverwrites?: TagStyles;
}
export declare const Tag: React.FC<TagProps>;
