/**
* Checks if a string is a valid RGBA color.
* @param {string} color - The color string to validate.
* @returns {boolean} Returns true if the color string is a valid RGBA color, otherwise false.
*/
export declarefunctionisRgbaColor(color: string): boolean;