import rgb from "../../types/rgbType"; /** * Coverts gamma corrected sRGB to a linear RGB * @param {rgb} sRGB Normalized gamma corrected sRGB value * @returns {rgb} linear RGB */ export default function sRGBtoLinear(sRGB: rgb): rgb;