import type { JournalEvent } from "../../JournalEvent.js";
/**
 * Written when the player requests a docking at a station.
 */
export interface DockingRequested extends JournalEvent<"DockingRequested"> {
    StationName: string;
    StationType?: string;
    MarketID?: number;
    LandingPads?: {
        Small: number;
        Medium: number;
        Large: number;
    };
}
