export declare class Color {
    red: number;
    green: number;
    blue: number;
    color?: string;
    constructor(red: number, green: number, blue: number, color?: string);
    getValue(): number;
}
