import Color from '../types/Color'; /** * Get a css color based on a color object and opacity * @author Jackson Parsells * @param color the color object * @param opacity opacity of the color * @returns the css color as a string */ declare const getRGBA: (color: Color, opacity: number) => string; export default getRGBA;