/**
 * @description
 *  Makes a HEX color value out of an array
 *  of valid RGB values and return it
 *
 * @export
 * @param {number[]} colors
 * @returns {string}
 */
export declare const hexValue: (colors: number[]) => string;
