export interface RGBColor { a?: number; b: number; g: number; r: number; } export default function rgba2obj(rgba?: string): RGBColor;