export declare class Color { readonly red: number; readonly green: number; readonly blue: number; readonly alpha: number; static readonly WHITE: Color; static readonly YELLOW: Color; static readonly MAGENTA: Color; static readonly AQUA: Color; static readonly BLACK: Color; static readonly RED: Color; static readonly GREEN: Color; static readonly BLUE: Color; static readonly GRAY: Color; constructor(red: number, green: number, blue: number, alpha?: number); get rgb(): [number, number, number]; get rgbString(): string; get rgba(): [number, number, number, number]; get hex(): string; get int(): number; static fromHex(color: string): Color; static fromInt(color: number): Color; normalized(): Color; } //# sourceMappingURL=color.model.d.ts.map