/**
 * Indicates whether or not to exchange for phsyical.
 * - Tag: 411
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ExchangeForPhysical: Readonly<{
    /** False */
    readonly False: "N";
    /** True */
    readonly True: "Y";
}>;
export type ExchangeForPhysical = (typeof ExchangeForPhysical)[keyof typeof ExchangeForPhysical];
