import hex from "../types/hexType.js"; import rgb from "../types/rgbType.js"; /** * Converts rgb color to hsl color * @param {rgb} rgb rgb color value represented by an array * @returns {hsl} hsl color value represented by an array */ export default function rgbToHex(rgb: rgb, isNormalized?: boolean): hex;