/**
 * Instruction to define conditions under which to release a locked order or parts of it.
 * - Tag: 1810
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ReleaseInstruction: Readonly<{
    /** Intermarket Sweep Order (ISO) */
    readonly ISO: 1;
    /** No Away Market Better check */
    readonly NoAwayMarketBetterCheck: 2;
}>;
export type ReleaseInstruction = (typeof ReleaseInstruction)[keyof typeof ReleaseInstruction];
