import type { Search } from '../../search'; import { SerializableProperty } from '../../serializers/property'; /** * Sets `initialSearch`, property results and property pagination state on page * load this is included by the `PropertyListPage` component */ export default function SearchSetter({ search, propertyData, }: { search: Search; propertyData?: { results: SerializableProperty[]; pagination: any; }; }): null; //# sourceMappingURL=search-setter.component.d.ts.map