import type { ValuesOf } from "../../util/typings.js"; /** Size values for {@link Tag}. */ export declare const TagSizes: { readonly extraSmall: "extraSmall"; readonly small: "small"; readonly medium: "medium"; }; /** Type describing size options for {@link Tag}. */ export type TagSize = ValuesOf; /** Primary text size values for {@link Tag}. */ export declare const TagTextSizes: { readonly caption1: "caption1"; readonly body1: "body1"; }; /** Type describing primary text size options for {@link Tag}. */ export type TagTextSize = ValuesOf; /** Shape values for {@link Tag}. */ export declare const TagShapes: { readonly rounded: "rounded"; readonly circular: "circular"; }; /** Type describing shape options for {@link Tag}. */ export type TagShape = ValuesOf; /** Appearance values for {@link Tag}. */ export declare const TagAppearances: { readonly filled: "filled"; readonly outline: "outline"; readonly brand: "brand"; }; /** Type describing appearance options for {@link Tag}. */ export type TagAppearance = ValuesOf; /** Event names for Tag. */ export declare const TagEventNames: { readonly dismiss: "dismiss"; }; //# sourceMappingURL=tag.options.d.ts.map