type RALLY_FLAGS = 1 | 2 | 4 | 24;
declare const FAVORABLE_WIND: 1;
declare const LAND_IMMEDIATELY: 2;
declare const ALT_FRAME_VALID: 4;
declare const ALT_FRAME: 24;

export { ALT_FRAME, ALT_FRAME_VALID, FAVORABLE_WIND, LAND_IMMEDIATELY };
export type { RALLY_FLAGS };
