/**
 * Quantity (e.g. number of shares) in numeric form or relative size.
 * - Tag: 27
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const IOIQty: Readonly<{
    /** Small */
    readonly Small: "S";
    /** Medium */
    readonly Medium: "M";
    /** Large */
    readonly Large: "L";
    /** Undisclosed Quantity */
    readonly UndisclosedQuantity: "U";
}>;
export type IOIQty = (typeof IOIQty)[keyof typeof IOIQty];
