import { BaseModel } from './BaseModel'; import { Certification } from './Certification'; export interface WorkerCertification extends BaseModel { certification: Certification; workerId: string; status?: 'signed_up' | 'granted' | 'revoked'; health: number; history: string[]; needsUpdating: boolean; }