import { JSX } from 'react'; import { Agency, Branch, BranchHestiaSearchParams } from '../../models'; import Pagination from '../../api/models/helpers/pagination'; import { GlobalConfig as IGlobalConfig } from '../../state'; import { BranchesSearch } from '../../search/branches-search.types'; export type BranchListSearchParams = { page?: string; county?: string; location?: string; postcode?: string; service?: string; search?: BranchHestiaSearchParams; sort?: string; }; export type BranchListPageProps = { branches: Branch[]; agency: Agency; pagination: Pagination | null; globalConfig: IGlobalConfig; search: BranchesSearch; }; export default function BranchListPage({ searchParams, children, pageSize, }: { searchParams?: BranchListSearchParams; children: (props: BranchListPageProps) => JSX.Element; pageSize?: number; }): Promise; //# sourceMappingURL=branch-list-page.component.d.ts.map