/**
 * Takes in any color and returns it as an rgba string.
 */
declare function toRgba(color: string): string;
export default toRgba;
