export interface CreateEditDivisionBody { _id: string; divisionName: string; employeeCount: number; lastUpdated: string; updatedBy: string; } export interface GetDivisionOptions { updatedByOptions: boolean; }