/**
 * Indicates how the minimum quantity should be applied when executing the order.
 * - Tag: 1822
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MinQtyMethod: Readonly<{
    /** Once (applies only to first execution) */
    readonly Once: 1;
    /** Multiple (applies to every execution) */
    readonly Multiple: 2;
}>;
export type MinQtyMethod = (typeof MinQtyMethod)[keyof typeof MinQtyMethod];
