import { SyntheticEvent } from 'react'; import { SerializableBranch } from '../serializers'; import { BranchDepartment } from '../models'; export type DepartmentOption = Pick; export type UseStaffSearchResult = { handleSelect: (e: SyntheticEvent) => void; departmentOptions: DepartmentOption[]; selected: { branchId: string; department: string; }; }; export default function useStaffSearch({ branches, }: { branches: SerializableBranch[]; }): UseStaffSearchResult; //# sourceMappingURL=use-staff-search.d.ts.map