/**
 * Type of stream assignment request.
 * - Tag: 1498
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamAsgnReqType: Readonly<{
    /** Stream assignment for new customer(s) */
    readonly StreamAssignmentForNewCustomer: 1;
    /** Stream assignment for existing customer(s) */
    readonly StreamAssignmentForExistingCustomer: 2;
}>;
export type StreamAsgnReqType = (typeof StreamAsgnReqType)[keyof typeof StreamAsgnReqType];
