/**
 * Indicates the seniority level of the lien in a loan.
 * - Tag: 1954
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const LienSeniority: Readonly<{
    /** Unknown */
    readonly Unknown: 0;
    /** First lien */
    readonly FirstLien: 1;
    /** Second lien */
    readonly SecondLien: 2;
    /** Third lien */
    readonly ThirdLien: 3;
}>;
export type LienSeniority = (typeof LienSeniority)[keyof typeof LienSeniority];
