/**
 * Indicates whether or not automatic booking can occur.
 * - Tag: 589
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const DayBookingInst: Readonly<{
    /** Can trigger booking without reference to the order initiator ("auto") */
    readonly Auto: "0";
    /** Speak with order initiator before booking ("speak first") */
    readonly SpeakWithOrderInitiatorBeforeBooking: "1";
    /** Accumulate */
    readonly Accumulate: "2";
}>;
export type DayBookingInst = (typeof DayBookingInst)[keyof typeof DayBookingInst];
