import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Variant` - Defines the variant of a component. * * @public */ export declare const Variant: { /** * `default` - The default variant set option. * @default */ readonly Default: "default"; /** * `primary` - The primary variant set option. */ readonly Primary: "primary"; /** * `secondary` - The secondary variant set option. */ readonly Secondary: "secondary"; /** * `tertiary` - The tertiary variant set option. */ readonly Tertiary: "tertiary"; /** * `danger` - The danger variant set option. */ readonly Danger: "danger"; /** * `warning` - The warning variant set option. */ readonly Warning: "warning"; /** * `success` - The success variant set option. */ readonly Success: "success"; /** * `info` - The info variant set option. */ readonly Info: "info"; /** * `neutral` - The neutral variant set option. */ readonly Neutral: "neutral"; /** * `highlight` - The highlight variant set option. */ readonly Highlight: "highlight"; }; /** * @public */ export type Variant = ValuesOf; //# sourceMappingURL=Variant.d.ts.map