/**
 * 十六进制转换为 RGBA
 * @param hex
 * @param alpha
 * @see https://stackoverflow.com/questions/21646738/convert-hex-to-rgba
 * @see https://github.com/bgrins/TinyColor
 * @returns string rgba
 */
export declare function convertRgba(hex: string, alpha?: number): string;
