/**
 * Specifies the direction of the message.
 * - Tag: 385
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const MsgDirection: Readonly<{
    /** Receive */
    readonly Receive: "R";
    /** Send */
    readonly Send: "S";
}>;
export type MsgDirection = (typeof MsgDirection)[keyof typeof MsgDirection];
