/**
 * Method of trading
 * - Tag: 338
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradSesMethod: Readonly<{
    /** Electronic */
    readonly Electronic: 1;
    /** Open Outcry */
    readonly OpenOutcry: 2;
    /** Two Party */
    readonly TwoParty: 3;
    /** Voice */
    readonly Voice: 4;
}>;
export type TradSesMethod = (typeof TradSesMethod)[keyof typeof TradSesMethod];
