import type { JournalEvent } from "../../JournalEvent.js";
/**
 * Written when the station denies a docking request.
 */
export interface DockingDenied extends JournalEvent<"DockingDenied"> {
    StationName: string;
    StationType?: string;
    MarketID?: number;
    Reason: string;
}
