/**
 * Specifies the type of loan when the credit default swap's reference obligation is a loan.
 * - Tag: 1955
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const LoanFacility: Readonly<{
    /** Bridge loan */
    readonly BridgeLoan: 0;
    /** Letter of credit */
    readonly LetterOfCredit: 1;
    /** Revolving loan */
    readonly RevolvingLoan: 2;
    /** Swingline funding */
    readonly SwinglineFunding: 3;
    /** Term loan */
    readonly TermLoan: 4;
    /** Trade claim */
    readonly TradeClaim: 5;
}>;
export type LoanFacility = (typeof LoanFacility)[keyof typeof LoanFacility];
