///
import { IColors } from '../../types/theme';
import { TAllowedColors } from './index';
export declare const TagColorsMapper: {
yellow: {
primary: string;
background: string;
};
red: {
primary: string;
background: string;
};
green: {
primary: string;
background: string;
};
purple: {
primary: string;
background: string;
};
blue: {
primary: string;
background: string;
};
gray: {
primary: string;
background: string;
};
darkGray: {
primary: string;
background: string;
};
};
export declare const StyledTag: import("@emotion/styled").StyledComponent<{
theme?: import("@emotion/react").Theme | undefined;
as?: import("react").ElementType | undefined;
} & {
theme: IColors;
color: TAllowedColors;
}, import("react").DetailedHTMLProps, HTMLDivElement>, {}>;