import rgb from "../../types/rgbType"; /** * Gamma corrects linear normalized rgb to an sRGB * @param {rgb} linearRGB linear normalized RGB value * @returns {rgb} gamma corrected sRGB */ export default function linearToSRGB(linearRGB: rgb): rgb;