export declare class xX_ColorUtil {
    /**
     * 【RGB】转【HEX】
     */
    static rgbToHex(r: number, g: number, b: number): string;
    /**
     * 【HEX】转【RGB】
     */
    static hexToRgb(sharpHex: string): {
        r: number;
        g: number;
        b: number;
    } | null;
    /**
     * 指定某个颜色
     */
    static ElLoading_color: string;
    private static __componentToHex;
}
//# sourceMappingURL=color-util.d.ts.map