type DEEPSTALL_STAGE = 0 | 1 | 2 | 3 | 4 | 5 | 6;
declare const DEEPSTALL_STAGE_FLY_TO_LANDING: 0;
declare const DEEPSTALL_STAGE_ESTIMATE_WIND: 1;
declare const DEEPSTALL_STAGE_WAIT_FOR_BREAKOUT: 2;
declare const DEEPSTALL_STAGE_FLY_TO_ARC: 3;
declare const DEEPSTALL_STAGE_ARC: 4;
declare const DEEPSTALL_STAGE_APPROACH: 5;
declare const DEEPSTALL_STAGE_LAND: 6;

export { DEEPSTALL_STAGE_APPROACH, DEEPSTALL_STAGE_ARC, DEEPSTALL_STAGE_ESTIMATE_WIND, DEEPSTALL_STAGE_FLY_TO_ARC, DEEPSTALL_STAGE_FLY_TO_LANDING, DEEPSTALL_STAGE_LAND, DEEPSTALL_STAGE_WAIT_FOR_BREAKOUT };
export type { DEEPSTALL_STAGE };
