export type StatsColorName = 'red' | 'orange' | 'green' | 'blue' | 'pink' | 'cyan'; export interface StatsColorProps { color?: StatsColorName; value?: number | string; title?: string; icon?: string; } export declare const StatsColorClass: (color: string) => "bg-error-2 text-error" | "bg-warning-2 text-warning" | "bg-success-2 text-success" | "bg-brand-2 text-brand" | "bg-pink-1 text-pink-6 dark:bg-pink-9 dark:text-pink-5" | "bg-cyan-1 text-cyan-6 dark:bg-cyan-9 dark:text-cyan-5" | undefined; export declare const StatsColorCard: ({ color, title, value, icon }: StatsColorProps) => import("react/jsx-runtime").JSX.Element;