/**
 * Identifies advertisement message transaction type
 * - Tag: 5
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AdvTransType: Readonly<{
    /** New */
    readonly New: "N";
    /** Cancel */
    readonly Cancel: "C";
    /** Replace */
    readonly Replace: "R";
}>;
export type AdvTransType = (typeof AdvTransType)[keyof typeof AdvTransType];
