export type StyleType = "high" | "medium" | "low"; export type StyleColorVariants = "blue" | "pink" | "red" | "purple" | "yellow" | "sky" | "emerald" | "gray" | "dark-coral"; export type StyleGlobalVariants = "primary" | "base" | "secondary"; export type StyleColorVariantsMap = { [Property in StyleColorVariants]: T; }; export type StyleGlobalVarinatsMap = { [Property in StyleGlobalVariants]: T; }