type ICAROUS_FMS_STATE = 0 | 1 | 2 | 3 | 4 | 5;
declare const ICAROUS_FMS_STATE_IDLE: 0;
declare const ICAROUS_FMS_STATE_TAKEOFF: 1;
declare const ICAROUS_FMS_STATE_CLIMB: 2;
declare const ICAROUS_FMS_STATE_CRUISE: 3;
declare const ICAROUS_FMS_STATE_APPROACH: 4;
declare const ICAROUS_FMS_STATE_LAND: 5;

export { ICAROUS_FMS_STATE_APPROACH, ICAROUS_FMS_STATE_CLIMB, ICAROUS_FMS_STATE_CRUISE, ICAROUS_FMS_STATE_IDLE, ICAROUS_FMS_STATE_LAND, ICAROUS_FMS_STATE_TAKEOFF };
export type { ICAROUS_FMS_STATE };
