/**
 * Define the type of trade volume applicable for the MinTradeVol(562) and MaxTradeVol(1140)
 * - Tag: 1786
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeVolType: Readonly<{
    /** Number of units (e.g. share, par, currency, contracts) (default) */
    readonly NumberOfUnits: 0;
    /** Number of round lots */
    readonly NumberOfRoundLots: 1;
}>;
export type TradeVolType = (typeof TradeVolType)[keyof typeof TradeVolType];
