import { MessageDefinition } from '../../../core/types.js';

declare const FLIGHT_INFORMATION_ID = 264;
declare const FLIGHT_INFORMATION_CRC_EXTRA = 0;
declare const FlightInformationDefinition: MessageDefinition;
interface MessageFlightInformation {
    arming_time_utc: number;
    takeoff_time_utc: number;
    flight_uuid: number;
    time_boot_ms: number;
    landing_time?: number;
}

export { FLIGHT_INFORMATION_CRC_EXTRA, FLIGHT_INFORMATION_ID, FlightInformationDefinition };
export type { MessageFlightInformation };
