/** * Convert input color string to normalized 6-digit hex color. * * Supported formats: * - #fff * - #ffffff * - rgb(r, g, b) * - rgba(r, g, b, a) * * Unsupported/invalid formats return: * #000000 */ export declare const toHashColor: (color: string) => string; //# sourceMappingURL=color.d.ts.map