export declare function getColorStringSafe(v: any): string;
export declare const wellKnownColors: {
[val: string]: string;
};
export declare function strToColor(str: string): {
a: number;
r: number;
g: number;
b: number;
};
export declare function rgbToHex(color: string): string;