import type { JournalEvent } from "../../JournalEvent.js";
export interface SellSuit extends JournalEvent<"SellSuit"> {
    Name: string;
    Name_Localised: string;
    Price: number;
    SuitID: number;
    SuitMods?: string[];
}
