export interface CreateEditPositionBody { _id: string; positionName: string; divisionName: string; employeeCount: number; lastUpdated: string; updatedBy: string; } export interface GetPositionOptions { divisionOptions: boolean; updatedByOptions: boolean; }