export type TSizes = "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; export type TColors = "primary" | "secondary" | "tertiary" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose"; export type TInputVariants = "default" | "outlined"; export type TButtonVariants = "text" | "filled" | "outlined" | "outlined_filled" | "gradient"; export type TChipVariants = "text" | "filled" | "outlined" | "outlined_filled" | "gradient"; export type TCodeInputMode = "verbatim" | "latin" | "latin-name" | "latin-prose" | "full-width-latin" | "kana" | "kana-name" | "katakana" | "numeric" | "tel" | "email" | "url"; export type TCodeInputType = "text" | "number" | "password" | "tel"; export type TDropdownPlacements = "topStart" | "topEnd" | "bottomStart" | "bottomEnd" | "startBottom" | "startTop" | "endBottom" | "endTop"; export type TDropdownTriggers = "click" | "hover"; export type TModalSizes = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "full";