import { ExtendedApartmentBuilding, ExtendedConstructionNumber, ExtendedPropertyType } from './api-utilities.types'; declare const showPrice: ({ constructionNumber, apartmentBuilding, propertyType, }: { constructionNumber?: ExtendedConstructionNumber | undefined; propertyType?: ExtendedPropertyType | undefined; apartmentBuilding?: ExtendedApartmentBuilding | undefined; }) => boolean; export { showPrice };