/**
 * Identifies the type of execution destination for the order.
 * - Tag: 2704
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ExDestinationType: Readonly<{
    /** No restriction
        May be used for MiFID II to indicate no restriction on where the order is executed. */
    readonly NoRestriction: 0;
    /** Can be traded only on a trading venue
        May be used for MiFID II to indicate the order can only be executed on a trading venue. */
    readonly TradedOnlyOnTradingVenue: 1;
    /** Can be traded only on a Systematic Internaliser (SI)
        May be used for MiFID II to indicate the order can only be executed on a Systematic Internaliser. */
    readonly TradedOnlyOnSI: 2;
    /** Can be traded on a trading venue or Systematic internaliser (SI)
        May be used for MiFID II to indicate the order can be executed on either a trading venue or a Systematic Internaliser. */
    readonly TradedOnTradingVenueOrSI: 3;
}>;
export type ExDestinationType = (typeof ExDestinationType)[keyof typeof ExDestinationType];
