import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; export type TagProps = PolymorphicComponentPropWithRef; type TagComponent = (props: TagProps) => JSX.Element; export declare const Tag: TagComponent; export {};