import type { JournalEvent } from "../../JournalEvent.js";
export interface CargoTransfer extends JournalEvent<"CargoTransfer"> {
    Transfers: Array<{
        Type: string;
        Type_Localised?: string;
        Count: number;
        Direction: string;
    }>;
}
