import hsl from "../types/hslType.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 rgbToHsl(rgb: rgb, isNormalized?: boolean): hsl;