/**
 * Method by which short positions are assigned to an exercise notice during exercise and assignment processing
 * - Tag: 744
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AssignmentMethod: Readonly<{
    /** Pro rata */
    readonly ProRata: "P";
    /** Random */
    readonly Random: "R";
}>;
export type AssignmentMethod = (typeof AssignmentMethod)[keyof typeof AssignmentMethod];
