import { FC } from "react";
export interface TagProps {
    label: string;
    variant?: "sale" | "soldout" | "blog";
    size?: "small" | "normal" | "large";
    color: string;
    onClick?: () => void;
}
export declare const Tag: FC<TagProps>;
export default Tag;
