import { JSX } from 'react'; import Pagination from '../../api/models/helpers/pagination'; import { AgencyEmployee } from '../../models'; export interface StaffIndexSearchParams { page?: string; pageSize?: string; branchId?: string; department?: string; } export interface StaffListPageProps { staff: AgencyEmployee[]; pagination: Pagination | null; } export default function StaffListPage({ searchParams, domain, children, }: { searchParams: StaffIndexSearchParams; domain: string; children: (props: StaffListPageProps) => JSX.Element; }): Promise; //# sourceMappingURL=staff-list-page.component.d.ts.map