interface RequestItemsObject { educationLevel: string; institute: string; startYear: number; endYear: number; finishDate: Date; startDate: Date; endDate: Date; isEducation: boolean | null; degree: string; field: string; fundName: string; gpa: string; country: string; other: string; duration: string; durationYear: number | null; note: string; } export type { RequestItemsObject };