import type { HestiaPlaceData } from '../api/models/place.types'; import { Search } from './constants'; /** Returns path segment for a given place, e.g. /brighton-and-hove/brighton */ export declare function pathFromPlace(place: HestiaPlaceData | null | undefined): string | null; /** Takes a search object and returns a full search path, e.g. /properties/sales/from-100000/up-to-3-bed/status-all */ export default function buildSearchUrl({ search, defaultStatus, place, postcodeUrlLabel, branchSearchUrlLabel, }: { search: Search; defaultStatus: string; place?: HestiaPlaceData | null; postcodeUrlLabel?: string; branchSearchUrlLabel?: string; }): string; //# sourceMappingURL=build-search-url.d.ts.map