export interface Color { 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; 1000: string; } export interface EnhancedColor { 50?: string; 100: string; 200: string; 300: string; 400: string; 500: string; 600: string; 700: string; 800: string; 900: string; 1000?: string; A100?: string; A200?: string; A400?: string; A700?: string; } export declare const primaryGreen: EnhancedColor; export declare const green: EnhancedColor; export declare const lightGreen: EnhancedColor; export declare const olive: EnhancedColor; export declare const magenta: EnhancedColor; export declare const blue: EnhancedColor; export declare const neutral: EnhancedColor; export declare const red: EnhancedColor; export declare const error: EnhancedColor;