import { FC, JSX } from 'react'; import { FlexRowProps } from '../internals/FlexRow'; type Props = Pick & { /** * Icon component * Example: `` or `` or `` */ icon?: JSX.Element; }; export type TagProps = React.HTMLAttributes & Pick, "onClick" | "href"> & Props; export declare const Tag: FC; export {};