import React from 'react'; import { MestGenericProps } from "../themes"; import { StyledTagVariant } from "./style"; type Props = { label: string | React.ReactNode; onClick?: () => void; disabled?: boolean; selected?: boolean; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type TagProps = Props & NativeAttrs & StyledTagVariant; declare const Tag: React.FC; export default Tag;