/**
 * Used to identify the reporting mode of the settlement obligation which is either preliminary or final
 * - Tag: 1159
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SettlObligMode: Readonly<{
    /** Preliminary */
    readonly Preliminary: 1;
    /** Final */
    readonly Final: 2;
}>;
