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