import type { JournalEvent } from "../../JournalEvent.js";
export interface CrewAssign extends JournalEvent<"CrewAssign"> {
    CrewID?: number;
    Name: string;
    Role: string;
}
