/**
 * Indicates request for forex accommodation trade to be executed along with security transaction.
 * - Tag: 121
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ForexReq: Readonly<{
    /** Do Not Execute Forex After Security Trade */
    readonly DoNotExecuteForexAfterSecurityTrade: "N";
    /** Execute Forex After Security Trade */
    readonly ExecuteForexAfterSecurityTrade: "Y";
}>;
export type ForexReq = (typeof ForexReq)[keyof typeof ForexReq];
