type MAV_LANDED_STATE = 0 | 1 | 2 | 3 | 4;
declare const MAV_LANDED_STATE_UNDEFINED: 0;
declare const MAV_LANDED_STATE_ON_GROUND: 1;
declare const MAV_LANDED_STATE_IN_AIR: 2;
declare const MAV_LANDED_STATE_TAKEOFF: 3;
declare const MAV_LANDED_STATE_LANDING: 4;

export { MAV_LANDED_STATE_IN_AIR, MAV_LANDED_STATE_LANDING, MAV_LANDED_STATE_ON_GROUND, MAV_LANDED_STATE_TAKEOFF, MAV_LANDED_STATE_UNDEFINED };
export type { MAV_LANDED_STATE };
