import type { JournalEvent } from "../../JournalEvent.js";
/**
 * Written when under fire (same time as the Under Attack voice message).
 */
export interface UnderAttack extends JournalEvent<"UnderAttack"> {
    Target?: "Fighter" | "Mothership" | "You";
}
