import { Feature, Polygon } from 'geojson'; import { Map as MapboxGlMap } from 'mapbox-gl'; import { IFlightTrackingDataDTO } from '../models/FlightDTO'; interface IUseArchiveFlightMapProps { map?: MapboxGlMap; points?: IFlightTrackingDataDTO[]; currentPoint?: IFlightTrackingDataDTO; flightZone?: Feature; } export declare const useArchiveFlightMap: ({ map, points, currentPoint, flightZone }: IUseArchiveFlightMapProps) => void; export {};