/**
 * Instructions for order handling on Broker trading floor
 * - Tag: 21
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const HandlInst: Readonly<{
    /** Automated execution order, private, no Broker intervention */
    readonly AutomatedExecutionNoIntervention: "1";
    /** Automated execution order, public, Broker intervention OK */
    readonly AutomatedExecutionInterventionOK: "2";
    /** Manual order, best execution */
    readonly ManualOrder: "3";
}>;
export type HandlInst = (typeof HandlInst)[keyof typeof HandlInst];
