/**
 * Converts hex color format to rgba.
 *
 * @param hex - hex color string (#xxx, or #xxxxxx)
 */
export declare function hexToRgba(rawColor: string, alpha: number): string | null;
