export interface AnalysisBarProps {
    componentType: 'analysisBar';
    expressionLevels?: string[];
    caption?: string;
    segments?: {
        color: 'jet' | string;
        width: number;
    }[];
    expressionValue?: string;
    isDimmed?: boolean;
}
