import { Department } from './Department';

export type DepartmentsResponse = {
  departments: Department[];
};
