/**
 * Method under which assignment was conducted
 * - Tag: 1049
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const InstrmtAssignmentMethod: Readonly<{
    /** Pro rata */
    readonly ProRata: "P";
    /** Random */
    readonly Random: "R";
}>;
export type InstrmtAssignmentMethod = (typeof InstrmtAssignmentMethod)[keyof typeof InstrmtAssignmentMethod];
