export interface IColorXYZJson {
    x: number;
    y: number;
    z: number;
}
export interface IColorXYZ extends Float32Array, IColorXYZJson {
}
