import { Dispatch, FunctionComponent, SetStateAction } from 'react'; import type { MenuItemProps } from '@mui/material'; import { Feature, GeoJsonProperties, Polygon } from 'geojson'; import { Map as MapboxGlMap } from 'mapbox-gl'; import { IFlightTrackingDataDTO } from '../../models/FlightDTO'; import './ArchiveFlight.scss'; interface IArchiveFlightProps { className?: string; map?: MapboxGlMap; flightZone?: Feature; trackingPoints?: IFlightTrackingDataDTO[]; error?: string; downloadMenuItems?: MenuItemProps[]; mapSelector?: string; onClose: () => void; onCurrentPointChange?: Dispatch>; } export declare const ArchiveFlight: FunctionComponent; export {};