/**
 * Reason code for stream assignment request reject.
 * - Tag: 1502
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamAsgnRejReason: Readonly<{
    /** Unknown client */
    readonly UnknownClient: 0;
    /** Exceeds maximum size */
    readonly ExceedsMaximumSize: 1;
    /** Unknown or Invalid currency pair */
    readonly UnknownOrInvalidCurrencyPair: 2;
    /** No available stream */
    readonly NoAvailableStream: 3;
    /** Other */
    readonly Other: 99;
}>;
export type StreamAsgnRejReason = (typeof StreamAsgnRejReason)[keyof typeof StreamAsgnRejReason];
