/** * Shared category color styles for trace visualization components * * Provides consistent Tailwind class names for category-based styling * across Intent view, Category Distribution Bar, and other trace visualizations. */ import { SpanCategory } from '../../types/index.js'; export interface CategoryColorConfig { border: string; bg: string; text: string; bar: string; chipHover: string; } export declare const CATEGORY_COLORS: Record; /** * Get category colors for a given category string. * Falls back to OTHER for unknown categories. */ export declare function getCategoryColors(category: string): CategoryColorConfig; //# sourceMappingURL=categoryStyles.d.ts.map