/**
 * @description
 *  Check if the value passed is a valid
 *  IRGB object containing red, green, blue, alpha?
 *  properties with values of type string or number
 *
 * @export
 * @param {*} value
 * @returns {boolean}
 */
export declare function isRGB(value: any): boolean;
