import type { HEXA, RGBA } from './colorParse'; /** 将 RGB 值转换为十六进制颜色值 * @param {RGBA} rgba rgba * @returns {HEXA} hex */ export declare function rgbToHex(rgba: RGBA): HEXA;