/**
 * Indicates whether application level recovery is needed.
 * - Tag: 1744
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ApplLevelRecoveryIndicator: Readonly<{
    /** Application level recovery is not needed (default) */
    readonly NoApplRecoveryNeeded: 0;
    /** Application level recovery is needed */
    readonly ApplRecoveryNeeded: 1;
}>;
export type ApplLevelRecoveryIndicator = (typeof ApplLevelRecoveryIndicator)[keyof typeof ApplLevelRecoveryIndicator];
