import hsl from "../../types/hslType.js"; /** * Parses css hsl string into hsl value with hue in degrees and s, l in range [0; 1] * @param {string} cssHsl css hsl string * @returns {hsl} hsl value represented by an array */ export default function cssHslToHsl(cssHsl: string): hsl;