export declare const Size: { LARGE: string; SMALL: string; XSMALL: string; }; export declare const SIZE_MAP: { large: string; medium: string; small: string; xsmall: string; lg: string; md: string; sm: string; xs: string; }; export type DeviceSizeType = 'xl' | 'lg' | 'md' | 'sm' | 'xs'; export declare const DEVICE_SIZES: DeviceSizeType[]; export type StateType = 'success' | 'warning' | 'danger' | 'info'; export declare const State: { SUCCESS: string; WARNING: string; DANGER: string; INFO: string; }; export type StyleType = 'default' | 'primary' | 'link' | 'inverse'; export declare const Style: { DEFAULT: string; PRIMARY: string; LINK: string; INVERSE: string; };