export const ATS_STATUS = {
  pending: {
    label: 'À traiter',
    color: 'gray',
    isFinal: false
  },
  shortlisted: {
    label: 'Entretien',
    color: 'blue',
    isFinal: false
  },
  accepted: {
    label: 'Accepté',
    color: 'green',
    isFinal: true
  },
  rejected: {
    label: 'Refusé',
    color: 'red',
    isFinal: true
  }
} as const;

export type AtsStatus = keyof typeof ATS_STATUS;
