import { MultiSelectOption } from './options.type'; export interface SettingsDivision { _id: string; divisionName: string; employeeCount: number; lastUpdated: string; updatedBy: string; } export interface DivisionOptions { updatedByOptions: MultiSelectOption[]; }