import { GeoCircle } from './geo-circle.model'; import { GeoBoundBox } from './geo-bound-box.model'; import { GeoPolygon } from './geo-polygon.model'; import { GeoSeachType } from '../enums/geo-search-type.enum'; import { Position } from './position.model'; export declare class GeneralInfoFilter { searchType: GeoSeachType; circle: GeoCircle; boundingBox: GeoBoundBox; multipolygon: GeoPolygon; responseId?: string; facilitiesIn?: string[]; starRatingIn?: number[]; carbonFootprintIn?: any[]; showOnMapRequestId?: string; location?: Position; constructor(obj: Partial); }