declare class Color { red: number; green: number; blue: number; constructor(red: number, green: number, blue: number); static fromHex(hex: string): Color; static fromInt(intColor: number): Color; toHex(): string; toInt(): number; } export default Color; //# sourceMappingURL=color.d.ts.map