export declare class Color { r: number; g: number; b: number; a: number; constructor(r: number, g: number, b: number, a: number); static Black(): Color; static White(): Color; static Red(): Color; static Green(): Color; static Blue(): Color; }