/**
 * Method for booking out this order. Used when notifying a broker that an order to be settled by that broker is to be booked out as an OTC derivative (e.g. CFD or similar).
 * - Tag: 775
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const BookingType: Readonly<{
    /** Regular booking */
    readonly RegularBooking: 0;
    /** CFD (Contract for difference) */
    readonly CFD: 1;
    /** Total Return Swap */
    readonly TotalReturnSwap: 2;
}>;
export type BookingType = (typeof BookingType)[keyof typeof BookingType];
