import type { JournalEvent } from "../../JournalEvent.js";
export interface BuyAmmo extends JournalEvent<"BuyAmmo"> {
    Cost: number;
}
