/**
 * Code to represent the type of trade.
    (Prior to FIX 4.4 this field was named "TradeType")
 * - Tag: 418
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const BidTradeType: Readonly<{
    /** Agency */
    readonly Agency: "A";
    /** VWAP Guarantee */
    readonly VWAPGuarantee: "G";
    /** Guaranteed Close */
    readonly GuaranteedClose: "J";
    /** Risk Trade */
    readonly RiskTrade: "R";
}>;
export type BidTradeType = (typeof BidTradeType)[keyof typeof BidTradeType];
