import type { ReactNode } from 'react'; import type { SegmentedBarLegendDisplayValue } from './types'; interface ProgressSegmentedBarLegendItemProps { title: string; color: string; displayValue?: SegmentedBarLegendDisplayValue; testID?: string; } declare const ProgressSegmentedBarLegendItem: ({ title, color, displayValue, testID, }: ProgressSegmentedBarLegendItemProps) => ReactNode; export default ProgressSegmentedBarLegendItem;