/**
 * 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 declare function isRgbaColor(color: string): boolean;
