import { FC } from 'react';
interface TagProps {
    color?: string;
    text: string;
}
declare const CustomTag: FC<TagProps>;
export default CustomTag;
