import type { Type as NumberTypeString } from "../../typings/NumberType"; import type { RGB } from "../../typings/RGB"; import type { HSL } from "../../typings/HSL"; export declare const defaultHSL: HSL; export declare const enforceHSL: (hsl?: Partial | undefined) => HSL; export declare const roundedHSL: (hsl: HSL, digit?: number | undefined) => HSL; /** * convert hsl object to number type of hsl object * * @param hsl any type of hsl object * @returns number of hsl object */ export declare const hslToHsl: (hsl: Partial, type?: NumberTypeString) => HSL; /** * Converts an HSL color value to RGB. * * @param hsl any type of hsl object * * @return rgb object with number 0-255 */ export declare const hslToRgb: (hsl: HSL) => RGB; //# sourceMappingURL=hsl.d.ts.map