export declare const colorStyles: { readonly primary: "bg-primary text-white"; readonly secondary: "bg-secondary text-white"; readonly accent: "bg-accent text-white"; readonly muted: "bg-muted text-foreground"; readonly success: "bg-success text-white"; readonly warning: "bg-warning text-white"; readonly danger: "bg-danger text-white"; readonly info: "bg-info text-white"; readonly gradient: "bg-gradient-ui text-white"; }; export type ColorVariant = keyof typeof colorStyles; export declare const textColors: { readonly default: "text-foreground"; readonly white: "text-white"; readonly primary: "text-primary"; readonly secondary: "text-secondary"; readonly accent: "text-accent"; readonly muted: "text-muted"; readonly success: "text-success"; readonly warning: "text-warning"; readonly danger: "text-danger"; readonly info: "text-info"; readonly gradient: "text-gradient-ui"; }; export declare const focusRingColors: { readonly primary: "focus:ring-primary/70"; readonly secondary: "focus:ring-secondary/70"; readonly accent: "focus:ring-accent/70"; readonly muted: "focus:ring-muted/70"; readonly success: "focus:ring-success/70"; readonly warning: "focus:ring-warning/70"; readonly danger: "focus:ring-danger/70"; readonly info: "focus:ring-info/70"; readonly gradient: "focus:ring-primary/70"; }; export declare const hasFocusVisibleColors: { readonly primary: "has-[:focus-visible]:ring-primary/70"; readonly secondary: "has-[:focus-visible]:ring-secondary/70"; readonly accent: "has-[:focus-visible]:ring-accent/70"; readonly muted: "has-[:focus-visible]:ring-muted-foreground/70"; readonly success: "has-[:focus-visible]:ring-success/70"; readonly warning: "has-[:focus-visible]:ring-warning/70"; readonly danger: "has-[:focus-visible]:ring-danger/70"; readonly info: "has-[:focus-visible]:ring-info/70"; readonly gradient: "has-[:focus-visible]:ring-primary/70"; };