export declare const sizeStyles: { readonly sm: "px-3 py-1 text-sm"; readonly md: "px-4 py-2 text-base"; readonly lg: "px-8 py-3 text-lg"; }; export declare const roundingStyles: { readonly none: "rounded-none"; readonly sm: "rounded-sm"; readonly md: "rounded-md"; readonly lg: "rounded-lg"; readonly xl: "rounded-xl"; readonly full: "rounded-full"; }; export declare const baseStyleVariants: { readonly color: { 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"; }; readonly shadow: { readonly sm: "shadow-sm"; readonly md: "shadow"; readonly lg: "shadow-lg"; readonly xl: "shadow-xl"; readonly '2xl': "shadow-2xl"; }; readonly size: { readonly sm: "px-3 py-1 text-sm"; readonly md: "px-4 py-2 text-base"; readonly lg: "px-8 py-3 text-lg"; }; readonly rounding: { readonly none: "rounded-none"; readonly sm: "rounded-sm"; readonly md: "rounded-md"; readonly lg: "rounded-lg"; readonly xl: "rounded-xl"; readonly full: "rounded-full"; }; }; /** * App-wide base StylesDef. Provides `shadow`, `color`, and `size` variants * * Extend this to inherit the full base variant contract: * @example * const buttonStyles = baseStyles.extend({ variants: { fill: {...} } }); */ export declare const baseStyles: import('..').StylesDef<{ readonly color: { 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"; }; readonly shadow: { readonly sm: "shadow-sm"; readonly md: "shadow"; readonly lg: "shadow-lg"; readonly xl: "shadow-xl"; readonly '2xl': "shadow-2xl"; }; readonly size: { readonly sm: "px-3 py-1 text-sm"; readonly md: "px-4 py-2 text-base"; readonly lg: "px-8 py-3 text-lg"; }; readonly rounding: { readonly none: "rounded-none"; readonly sm: "rounded-sm"; readonly md: "rounded-md"; readonly lg: "rounded-lg"; readonly xl: "rounded-xl"; readonly full: "rounded-full"; }; }>;