/**
 * Settlement Instructions message transaction type
 * - Tag: 163
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlInstTransType: Readonly<{
    /** New */
    readonly New: "N";
    /** Cancel */
    readonly Cancel: "C";
    /** Replace */
    readonly Replace: "R";
    /** Restate */
    readonly Restate: "T";
}>;
export type SettlInstTransType = (typeof SettlInstTransType)[keyof typeof SettlInstTransType];
