import { ExtendedConstructionNumber, ExtendedPropertyType } from '../../api-utilities/api-utilities.types'; interface IsApartment { (obj: { constructionNumber: ExtendedConstructionNumber; }): boolean; (obj: { propertyType: ExtendedPropertyType; }): boolean; } declare const isApartment: IsApartment; export { isApartment };