import { JSX } from 'react'; import { PropertiesIndexSearchParams } from '../../theme/metadata/properties'; import { SerializableProperty } from '../../serializers/property'; import { GlobalConfig as IGlobalConfig, PageConfig as PageConfigInterface } from '../../state'; import Pagination from '../../api/models/helpers/pagination'; import { Agency } from '../../models'; import { Search } from '../../search'; export type PropertyListPageProps = { properties: SerializableProperty[]; agency: Agency; search: Search; searchParams: PropertiesIndexSearchParams; pagination: Pagination | null; globalConfig: IGlobalConfig; orderedInterstitialConfigs: PageConfigInterface[]; }; export default function PropertyListPage({ searchParams, children, domain, }: { searchParams: PropertiesIndexSearchParams; children: (props: PropertyListPageProps) => JSX.Element; domain: string; }): Promise; //# sourceMappingURL=property-list-page.component.d.ts.map