declare type TextColor = 'dark' | 'light'; declare type TextVariant = 'title' | 'body' | 'muted' | 'labels'; declare type BrandColors = 'main' | 'complementary' | 'opposite'; declare type VariantType = 'default' | 'darkest' | 'action' | 'lightest' | 'active'; declare type InteractionType = 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'danger'; declare type GrayscaleType = 0 | 5 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90; declare type NeutralType = GrayscaleType | 100 | 110 | 120 | 130 | 140 | 150 | 160 | 170 | 180; declare type VariantColors = `${I}-${V}`; declare type GrayscaleColors = `gray-${S}`; declare type NeutralColors = `neutral-${S}`; export declare type OpacityType = 'transparent' | 'super-transparent' | 'semi-translucid' | 'translucid' | 'super-translucid' | 'semi-opaque' | 'opaque'; export declare type ColorsType = BrandColors | GrayscaleColors | NeutralColors | VariantColors | VariantColors | VariantColors<'base' | 'deep', 'light' | 'dark'> | 'inherit'; export declare type MountColorSafeListArgs = { prefix?: string; }; export {};