type BaseProps = React.HTMLAttributes;
export interface Props extends BaseProps {
variant?: "default" | "removeAble" | "clickAble" | "withLink" | "removeAbleWithLink";
children?: React.ReactNode;
url?: string;
onClick?: () => void;
}
declare const Tag: import('react').ForwardRefExoticComponent>;
export default Tag;