import { FunctionComponent } from 'react'; import 'chartjs-adapter-luxon'; import { IFlightTrackingDataDTO } from 'features/Flight/models/FlightDTO'; import './ArchiveFlightChart.scss'; interface IArchiveFlightChartProps { className?: string; points?: IFlightTrackingDataDTO[]; currentPoint?: IFlightTrackingDataDTO; } export declare const ArchiveFlightChart: FunctionComponent; export {};