/**
 * Type of Application Message Request being made.
 * - Tag: 1347
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ApplReqType: Readonly<{
    /** Retransmission of application messages for the specified Applications */
    readonly Retransmission: 0;
    /** Subscription to the specified Applications */
    readonly Subscription: 1;
    /** Request for the last ApplLastSeqNum published for the specified Applications */
    readonly RequestLastSeqNum: 2;
    /** Request valid set of Applications */
    readonly RequestApplications: 3;
    /** Unsubscribe to the specified Applications */
    readonly Unsubscribe: 4;
    /** Cancel retransmission */
    readonly CancelRetransmission: 5;
    /** Cancel retransmission and unsubscribe to the specified applications */
    readonly CancelRetransmissionUnsubscribe: 6;
}>;
export type ApplReqType = (typeof ApplReqType)[keyof typeof ApplReqType];
