import type { RGBColour } from "./types"; /** * Converts an RGB colour object to a CSS RGB colour string. * * @param {RGBColour} colour - The RGB colour object to convert. * @returns {string} The CSS RGB colour string in the format `rgb(R G B)` or `rgb(R G B / A)` if the alpha channel is present. */ export declare function convertRGBtoCSSRGB({ R, G, B, A }: RGBColour): string;