/**
 * Indicates that message may contain information that has been sent under another sequence number.
 * - Tag: 97
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PossResend: Readonly<{
    /** Original Transmission */
    readonly OriginalTransmission: "N";
    /** Possible Resend */
    readonly PossibleResend: "Y";
}>;
export type PossResend = (typeof PossResend)[keyof typeof PossResend];
