import { LatLngId, OSMType } from '../../types'; import { TargomoClient } from '../targomoClient'; import { POIRequestOptions } from '../../types/options/poiRequestOptions'; import { TravelRequestPayload } from './travelRequestPayload'; export declare class POIRequestPayload extends TravelRequestPayload { osmTypes: OSMType[]; serviceKey: string; serviceUrl: string; format: 'json' | 'geojson'; constructor(client: TargomoClient, sources: LatLngId | LatLngId[], options: POIRequestOptions); }