import { ApartmentBuildingModel, AreaProjectModel, ConstructionNumberModel, DistrictModel, ProjectPhaseModel, PropertyTypeModel } from '../generated'; declare const filterConstructionNumbers: (objects: T[], conditions: Partial) => T[]; declare const filterPropertyTypes: (objects: T[], conditions: Partial) => T[]; declare const filterProjectPhases: (objects: T[], conditions: Partial) => T[]; declare const filterDistricts: (objects: T[], conditions: Partial) => T[]; declare const filterAreaProjects: (objects: T[], conditions: Partial) => T[]; declare const filterApartmentBuildings: (objects: T[], conditions: Partial) => T[]; declare const findConstructionNumber: (objects: T[], conditions: Partial) => T | undefined; declare const findPropertyType: (objects: T[], conditions: Partial) => T | undefined; declare const findProjectPhase: (objects: T[], conditions: Partial) => T | undefined; declare const findDistrict: (objects: T[], conditions: Partial) => T | undefined; declare const findAreaProject: (objects: T[], conditions: Partial) => T | undefined; declare const findApartmentBuilding: (objects: T[], conditions: Partial) => T | undefined; export { filterConstructionNumbers, filterPropertyTypes, filterProjectPhases, filterDistricts, filterAreaProjects, filterApartmentBuildings, findConstructionNumber, findPropertyType, findProjectPhase, findDistrict, findAreaProject, findApartmentBuilding, };