import { HSV } from "../../typings/HSV"; import { Type } from "../../typings/NumberType"; import { RGB } from "../../typings/RGB"; export declare const defaultHSV: HSV; export declare const enforceHSV: (hsv?: Partial | undefined) => HSV; export declare const roundedHSV: (hsv: HSV, digit?: number | undefined) => HSV; /** * convert hsl object to number type of hsl object * * @param hsl any type of hsl object * @returns number of hsl object */ export declare const hsvToHsv: (hsv: Partial, type?: Type) => HSV; /** * Converts an HSL color value to RGB. * * @param hsl any type of hsl object * * @return rgb object with number 0-255 */ export declare const hsvToRgb: (hsl: HSV) => RGB; //# sourceMappingURL=hsv.d.ts.map