import React from 'react'; import { SnippetTypes } from "../utils/prop-types"; export declare type TagTypes = SnippetTypes; interface Props { type?: TagTypes; invert?: boolean; className?: string; } declare type NativeAttrs = Omit, keyof Props>; export declare type TagProps = Props & NativeAttrs; export declare type TagColors = { color: string; bgColor: string; borderColor: string; }; declare const Tag: React.ForwardRefExoticComponent>; export default Tag;