/**
 * Specifies the method under which a trade quantity was allocated.
 * - Tag: 1002
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocMethod: Readonly<{
    /** Automatic */
    readonly Automatic: 1;
    /** Guarantor */
    readonly Guarantor: 2;
    /** Manual */
    readonly Manual: 3;
    /** Broker assigned */
    readonly BrokerAssigned: 4;
}>;
export type AllocMethod = (typeof AllocMethod)[keyof typeof AllocMethod];
