import { ColorsConfig } from '../interfaces/colors-config.interface'; export declare class Color { private readonly colorData; readonly name: string; readonly hex: string; readonly rgb: [number, number, number]; readonly formattedRgb: string; readonly key: string; readonly isLight: boolean; constructor(colorData: ColorsConfig.Color); getAsCssValue(alpha?: number): string; private getRgb; private getFormattedRgb; private getFormattedKey; private getIsLight; }