interface RgbColor { r: number; g: number; b: number; } /** Precomputed HSL16-to-RGB lookup table. */ export declare class ColorTable { #private; constructor(); /** * Looks up an HSL16 value and writes the result into `out`. * Pass a custom object to retain the result across calls; omit to use the * shared module-level object (zero allocation, safe only when the caller * does not need to store the result past the next lookup call). */ lookup(hsl16: number, out?: RgbColor): RgbColor; } export {}; //# sourceMappingURL=ColorTable.d.ts.map