import type { JournalEvent } from "../../JournalEvent.js";
export interface CommunityGoalReward extends JournalEvent<"CommunityGoalReward"> {
    Name: string;
    Reward: number;
    System: string;
    CGID?: number;
}
