export interface FieldProps {
  label: string;
  value: string | number | { state: number; labels: string[]; colors?: string[] };
  states?: { [value: string | number]: { label: string; color: string } };
  type?: FieldTypes
  justify?: 'between' | 'around' | 'start' | 'end';
  valueColor?: string,
  show?: boolean;
  format?: (value: any) => any;
}

export enum FieldTypes {
  TEXT = 'text',
  INDICATOR = 'indicator',
}