import { type TagBaseProps } from "./TagBase";
export type TagProps = Omit<TagBaseProps, "color">;
export declare function Tag(props: TagProps): import("react/jsx-runtime").JSX.Element;
