/**
 * Identifies transaction type
 * - Tag: 20
 * - FIX Specification type: char
 * - FIX Specification version: FIX42
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ExecTransType: Readonly<{
    /** New */
    readonly New: "0";
    /** Cancel */
    readonly Cancel: "1";
    /** Correct */
    readonly Correct: "2";
    /** Status */
    readonly Status: "3";
}>;
export type ExecTransType = (typeof ExecTransType)[keyof typeof ExecTransType];
