declare const DEFAULT_RESULT_ON_ERROR = "rgba(0, 0, 0, 1)"; /** * Converts a hex color to an rgba color. */ declare function hexToRgba(hex: string, opacity?: number): string; export { DEFAULT_RESULT_ON_ERROR, hexToRgba };