export declare type FontSize = 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' | 'xxx-large' | 'xxxx-large'; export declare type FontSpacing = 'dense' | 'normal' | 'loose'; export declare type InputSize = 'small' | 'medium' | 'large'; export declare type ThemeColor = 'default' | 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'; export declare type NotificationColor = 'error' | 'warning' | 'info' | 'success'; export declare const FONT_SIZES: { [key in FontSize]: FontSize; }; export declare const FONT_SPACING: { [key in FontSpacing]: FontSpacing; }; export declare const INPUT_SIZES: { [key in InputSize]: InputSize; }; export declare const THEME_COLORS: { [key in ThemeColor]: ThemeColor; }; export declare const NOTIFICATION_COLORS: { [key in NotificationColor]: NotificationColor; };