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