import { TrafficIncidentsOptions, TrafficIncidentsResult } from "./types"; import type { BBox } from "@tomtom-org/maps-sdk/core"; /** * Get traffic incidents in a specified bounding box area. * * @param bbox Bounding box as [minLon, minLat, maxLon, maxLat] (GeoJSON convention) * @param options Additional options for filtering incidents * @returns List of traffic incidents with details */ export declare function getTrafficIncidents(bbox: BBox, options?: TrafficIncidentsOptions): Promise;