export type ShipSize = "extraSmall" | "small" | "medium" | "large";
export type SlotWithGunports = [number, number];
export type SlotWithGunportsAcrossDecks = [
    number,
    {
        top: number;
        lower?: number;
    }
];
//# sourceMappingURL=ShipProperties.d.ts.map