export type ThemeStatusVariantType = | 'error' | 'info' | 'success' | 'warning' export type ThemeInputVariantType = | 'primary' | 'ai' | 'error' | 'info' | 'success' | 'warning' export type ThemeVariantType = | 'ai' | 'dark' | 'error' | 'info' | 'light' | 'primary' | 'success' | 'warning' export type ThemeFullVariantType = | 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'light' | 'lime' | 'orange' | 'orchid' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow' export type ThemeFullVariantAvatarType = | 'amaranth' | 'aqua' | 'blue' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow' export type ThemeLuminanceVariantType = | 'dark' | 'light' export type LabelVariantType = | 'amaranth' | 'aqua' | 'blue' | 'green' | 'lime' | 'orange' | 'orchid' | 'sky' | 'violet' | 'yellow' export type ActionVariantType = | 'primary' | 'dark' | 'light' export type ChipVariantType = | 'ai' | 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'secondary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow' export type StateVariantType = | 'disabled' | 'focused' | 'readonly' export type ToneActionVariantType = | 'primary' // background strong | 'secondary' // background weak | 'strong' // background strong | 'weak' // background weak | 'ghost' // bordered | 'quiet' // no background, no border export type ToneVariantType = | 'strong' // background strong | 'weak' // background weak | 'ghost' // bordered | 'quiet' // no background, no border export type ToneSimpleVariantType = | 'quiet' | 'strong' | 'weak' export type ToneMinimalVariantType = | 'strong' | 'weak'