import { FunctionComponent } from 'react'; import { IFlightTrackingDataDTO } from 'features/Flight/models/FlightDTO'; import './FlightTable.scss'; interface IFlightTableProps { className?: string; points?: IFlightTrackingDataDTO[]; currentPointId?: number; setCurrentPouintId?: (id: number | undefined) => void; } export declare const FlightTable: FunctionComponent; export {};