/**
 * Defines the lot type assigned to the order.
 * - Tag: 1093
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const LotType: Readonly<{
    /** Odd Lot */
    readonly OddLot: "1";
    /** Round Lot */
    readonly RoundLot: "2";
    /** Block Lot */
    readonly BlockLot: "3";
    /** Round lot based upon UnitOfMeasure(996) */
    readonly RoundLotBasedUpon: "4";
}>;
export type LotType = (typeof LotType)[keyof typeof LotType];
