/** * HSL Color class that containes the matrix default colors */ export declare class HSLColor { /** * Matrix Pre defined Colors */ static baseDefaultColors: HSLColor[]; /** * Color hue */ hue: number; /** * Color saturation */ saturation: number; /** * Color lightness */ lightness: number; /** * HSLColor constructor * @param h hue * @param s saturation * @param l lightness */ constructor(h: number, s: number, l: number); }