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' | 'secondary' | 'strong' | 'weak' | 'ghost' | 'quiet'; export type ToneVariantType = 'strong' | 'weak' | 'ghost' | 'quiet'; export type ToneSimpleVariantType = 'quiet' | 'strong' | 'weak'; export type ToneMinimalVariantType = 'strong' | 'weak';