import { FC } from "react"; import { Colors } from "./../../types"; export interface BaseTagProps { as?: any; children: any; className?: string; } export interface TagProps extends Omit { color: Colors; htmlFor?: string; } export declare type TagType = "where" | "withWho" | "feeling"; declare const Tag: FC; export default Tag;