import type { Site } from './site' import type { Contract } from './contract' export type Employee = { id: number firstName: string lastName: string site: Site contract?: Contract | null currentContractNature?: 'CDI' | 'CDD' | 'INTERIM' currentContractStartDate?: string | null currentContractEndDate?: string | null displayOrder?: number }