import { HueColor, RgbColor } from './types/index';
export declare class ColorConverter {
    static convertHueToRgb(hueColor: HueColor): RgbColor;
    static convertRgbToHue(rgbColor: RgbColor): HueColor;
}
