/**
 * Matching Instruction for the order.
 * - Tag: 1625
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MatchInst: Readonly<{
    /** Match */
    readonly Match: 1;
    /** Do Not Match */
    readonly DoNotMatch: 2;
}>;
export type MatchInst = (typeof MatchInst)[keyof typeof MatchInst];
