/**
 * Identifies Registration Instructions transaction type
 * - Tag: 514
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const RegistTransType: Readonly<{
    /** New */
    readonly New: "0";
    /** Cancel */
    readonly Cancel: "2";
    /** Replace */
    readonly Replace: "1";
}>;
export type RegistTransType = (typeof RegistTransType)[keyof typeof RegistTransType];
