import React, { FC } from 'react'; export interface ITagColors { backgroundColor?: string; fontColor?: string; borderColor?: string; } interface IBcTagProps extends Omit, 'size' | 'children'> { title?: string; withIcon?: boolean; size?: 'small' | 'regular'; frameStyle?: 'solid' | 'outlined'; borderRadius?: 'round' | 'regular' | 'square'; colors?: ITagColors; } declare const Tag: FC; export { Tag };