type MAV_VTOL_STATE = 0 | 1 | 2 | 3 | 4;
declare const MAV_VTOL_STATE_UNDEFINED: 0;
declare const MAV_VTOL_STATE_TRANSITION_TO_FW: 1;
declare const MAV_VTOL_STATE_TRANSITION_TO_MC: 2;
declare const MAV_VTOL_STATE_MC: 3;
declare const MAV_VTOL_STATE_FW: 4;

export { MAV_VTOL_STATE_FW, MAV_VTOL_STATE_MC, MAV_VTOL_STATE_TRANSITION_TO_FW, MAV_VTOL_STATE_TRANSITION_TO_MC, MAV_VTOL_STATE_UNDEFINED };
export type { MAV_VTOL_STATE };
