/**
 * Identifies the class or source of the order handling instruction values.  Scope of this will apply to both CustOrderHandlingInst(1031) and DeskOrderHandlingInst(1035).
    Conditionally required when CustOrderHandlingInst(1031) or DeskOrderHandlingInst(1035) is specified.
 * - Tag: 1032
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const OrderHandlingInstSource: Readonly<{
    /** FINRA OATS */
    readonly FINRAOATS: 1;
    /** FIA Execution Source Code */
    readonly FIAExecutionSourceCode: 2;
}>;
export type OrderHandlingInstSource = (typeof OrderHandlingInstSource)[keyof typeof OrderHandlingInstSource];
