declare const severityColors: { readonly critical: "#ef4444"; readonly major: "#f59e0b"; readonly minor: "#eab308"; readonly info: "#60a5fa"; }; declare const domainColors: readonly ["#3b82f6", "#8b5cf6", "#ec4899", "#10b981", "#f59e0b", "#06b6d4", "#f97316", "#a855f7"]; declare const chartColors: { readonly primary: "#3b82f6"; readonly success: "#10b981"; readonly warning: "#f59e0b"; readonly danger: "#ef4444"; readonly info: "#06b6d4"; }; declare function getDomainColor(index: number): string; declare function getSeverityColor(severity: keyof typeof severityColors): string; declare function hexToRgba(hex: string, alpha: number): string; export { chartColors, domainColors, getDomainColor, getSeverityColor, hexToRgba, severityColors };