export interface StateIndicatorProps {
  state: number;
  labels?: string[];
  textClassName?: string;
  colors?: ('grey' | 'green' | 'blue' | 'coral' | 'red' | 'yellow' | 'pink' | 'purple' | 'cyan' | 'orange' | 'black' | string)[];
  states?: StateIndicatorStates;
  style?: string;
}

export type StateIndicatorStates = { [value: string | number]: { label: string; color: string } };
