/**
 * Type of acknowledgement.
 * - Tag: 1503
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamAsgnAckType: Readonly<{
    /** Assignment Accepted */
    readonly AssignmentAccepted: 0;
    /** Assignment Rejected */
    readonly AssignmentRejected: 1;
}>;
export type StreamAsgnAckType = (typeof StreamAsgnAckType)[keyof typeof StreamAsgnAckType];
