import type { JournalEvent } from "../../JournalEvent.js";
export interface BookDropship extends JournalEvent<"BookDropship"> {
    Cost: number;
    DestinationSystem: string;
    DestinationLocation: string;
}
