import type { JournalEvent } from "../../JournalEvent.js";
export interface JoinACrew extends JournalEvent<"JoinACrew"> {
    Captain: string;
}
