/**
 * Identifies the Bid Request message type.
 * - Tag: 374
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const BidRequestTransType: Readonly<{
    /** Cancel */
    readonly Cancel: "C";
    /** New */
    readonly New: "N";
}>;
export type BidRequestTransType = (typeof BidRequestTransType)[keyof typeof BidRequestTransType];
