/**
 * Assumes H, S, and L are contained in the set [0, 1] and
 * returns R, G, and B in the set [0, 1].
 */
export declare const hsl2rgb: (H: number, S: number, L: number) => number[];
