import type { JournalEvent } from "../../JournalEvent.js";
export interface ModuleSell extends JournalEvent<"ModuleSell"> {
    MarketID?: number;
    SellItem: string;
    SellItem_Localised?: string;
    SellPrice: number;
    Ship: string;
    ShipID: number;
    Slot: string;
}
