/**
 * Identifies the type of Confirmation message being sent.
 * - Tag: 773
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ConfirmType: Readonly<{
    /** Status */
    readonly Status: 1;
    /** Confirmation */
    readonly Confirmation: 2;
    /** Confirmation Request Rejected (reason can be stated in Text (58) field) */
    readonly ConfirmationRequestRejected: 3;
}>;
export type ConfirmType = (typeof ConfirmType)[keyof typeof ConfirmType];
