/**
 * Type of financing termination.
 * - Tag: 788
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TerminationType: Readonly<{
    /** Overnight */
    readonly Overnight: 1;
    /** Term */
    readonly Term: 2;
    /** Flexible */
    readonly Flexible: 3;
    /** Open */
    readonly Open: 4;
}>;
export type TerminationType = (typeof TerminationType)[keyof typeof TerminationType];
