/**
 * The type of assignment being affected in the Stream Assignment Report.
 * - Tag: 1617
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamAsgnType: Readonly<{
    /** Assignment */
    readonly Assignment: 1;
    /** Rejected */
    readonly Rejected: 2;
    /** Terminate/Unassign */
    readonly Terminate: 3;
}>;
export type StreamAsgnType = (typeof StreamAsgnType)[keyof typeof StreamAsgnType];
