/**
 * This trade is to be treated as an odd lot
    If this field is not specified, the default will be "N"
 * - Tag: 575
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const OddLot: Readonly<{
    /** Treat as round lot (default) */
    readonly TreatAsRoundLot: "N";
    /** Treat as odd lot */
    readonly TreatAsOddLot: "Y";
}>;
export type OddLot = (typeof OddLot)[keyof typeof OddLot];
