export declare type ColorVariant = 'primaryLight' | 'primaryDark' | 'secondaryLight' | 'secondaryDark' | 'core' | 'accent' | 'success' | 'danger' | 'warning' | 'transparent' | 'inherit' | 'background'; export declare type ColorSet = { backgroundColor: string; backgroundColorHover: string; backgroundColorActive: string; borderColor: string; borderColorHover: string; borderColorActive: string; } & TypographyColorSet; export interface TypographyColorSet { color: string; colorHover: string; colorActive: string; } export declare type StyleVariant = 1 | 2 | 3; export interface ColorState { normal: string; hover: string; active: string; } export declare type UIState = 'normal' | 'hover' | 'active'; export declare type WeightVariant = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9;