import { HSL, RGB } from './types.js'; /** * Convert RGB to HSL */ export declare function rgb2hsl(rgb: RGB): HSL; /** * Convert HSL to RGB */ export declare function hsl2rgb(hsl: HSL): RGB;