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