import { GroupPreview } from "../Previews/GroupPreview"; import { DbListItem } from "../Shared/DbListItem"; import { SectionListItem } from "../Shared/SectionListItem"; export type SignUpFormData = { firstName?: string; lastName?: string; personalId?: string; militaryId?: string; referringUser?: string; groups?: GroupPreview[]; mandatoryServiceEndDate?: Date; militaryStatus?: string; gender?: number; civilProfession?: string; sections?: SectionListItem[]; sagahs?: DbListItem[]; subjectAreas?: DbListItem[]; personalEmail?: string; phoneNumber?: string; };