export declare class Color { /** * The raw color, suitable for usage in CSS and HTML. */ color: string; /** * CSS declarations for the `color` CSS property. */ colorStyle: {color: string}; /** * CSS declarations for the `background-color` CSS property. */ backgroundColorStyle: {backgroundColor: string}; /** * CSS declarations for the `border-color` CSS property. */ borderColorStyle: {borderColor: string}; /** * CSS declarations for the `outline-color` CSS property. */ outlineColorStyle: {outlineColor: string}; }