import type { JournalEvent } from "../../JournalEvent.js";
export interface DropshipDeploy extends JournalEvent<"DropshipDeploy"> {
    StarSystem: string;
    SystemAddress: number;
    Body: string;
    BodyID: number;
    OnStation: boolean;
    OnPlanet: boolean;
}
