export const patientSizes = { small: 'Small', medium: 'Medium', large: 'Large', } as const; export type PatientSize = keyof typeof patientSizes;