import type { JournalEvent } from "../../JournalEvent.js";
export interface EjectCargo extends JournalEvent<"EjectCargo"> {
    Abandoned: boolean;
    Count: number;
    Type: string;
    Type_Localised?: string;
}
