import type { IHSV } from './interfaces'; /** Converts HSL components to an HSV color. */ export declare function hsl2hsv(h: number, s: number, l: number): IHSV;