/**
* Checks if the provided stringis a valid RGB color format.
* @param rgb The stringto validate as RGB (e.g., "rgb(255, 0, 128)").
* @returns Trueif the stringis a valid RGB format, false otherwise.
*/
export declareconst isValidRgb: (rgb: string) => boolean;