/**
 * Identifies the Confirmation transaction type.
 * - Tag: 666
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ConfirmTransType: Readonly<{
    /** New */
    readonly New: 0;
    /** Replace */
    readonly Replace: 1;
    /** Cancel */
    readonly Cancel: 2;
}>;
export type ConfirmTransType = (typeof ConfirmTransType)[keyof typeof ConfirmTransType];
