/**
 * Transaction Type - required except where SettlInstMode is 5=Reject SSI request
 * - Tag: 1162
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlObligTransType: Readonly<{
    /** Cancel */
    readonly Cancel: "C";
    /** New */
    readonly New: "N";
    /** Replace */
    readonly Replace: "R";
    /** Restate */
    readonly Restate: "T";
}>;
export type SettlObligTransType = (typeof SettlObligTransType)[keyof typeof SettlObligTransType];
