import type { JournalEvent } from "../../JournalEvent.js";
/**
 * Written when landing on a planet surface.
 */
export interface Touchdown extends JournalEvent<"Touchdown"> {
    Latitude?: number;
    Longitude?: number;
    StarSystem?: string;
    SystemAddress?: number;
    Body?: string;
    BodyID?: number;
    OnStation?: boolean;
    OnPlanet?: boolean;
    /** Included if within 50 km of a location listed in the nav panel. */
    NearestDestination?: string;
    NearestDestination_Localised?: string;
    /** False if ship was recalled from SRV, true if player is landing. */
    PlayerControlled?: boolean;
    Taxi?: boolean;
    Multicrew?: boolean;
}
