/**
 * Indicates the trade is a result of an offset or onset.
 * - Tag: 1849
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const OffsetInstruction: Readonly<{
    /** Offset
        A type of transaction where an executing firm gives up a trade as a result of an allocation. Or, in the case of a reversal of an allocation, the take-up (claiming) firm's transaction. */
    readonly Offset: 0;
    /** Onset
        A type of transaction where a take-up (claiming) firm takes up a trade as a result of an allocation. Or, in the case of a reversal of an allocation, the executing firm's transaction. */
    readonly Onset: 1;
}>;
export type OffsetInstruction = (typeof OffsetInstruction)[keyof typeof OffsetInstruction];
