export declare function rgbToXY(rgb: number[], colorGamut: Gamut): number[];
type XYValue = {
    x: number;
    y: number;
};
type Gamut = {
    green: XYValue;
    red: XYValue;
    blue: XYValue;
};
export {};
