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