export interface IColorRYBJson {
    r: number;
    y: number;
    b: number;
}
export interface IColorRYB extends Uint8Array, IColorRYBJson {
}
