/**
 * The program under which a commercial paper offering is exempt from SEC registration identified by the paragraph number(s) within the US Securities Act of 1933 or as identified below.
 * - Tag: 875
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CPProgram: Readonly<{
    /** 3(a)(3)
        Arising out of a current transaction with a maturity less than 9 months. */
    readonly Program3a3: 1;
    /** 4(2)
        Issued not involving any public offering. */
    readonly Program42: 2;
    /** 3(a)(2)
        Issued or guaranteed by the US, state or territorial government. */
    readonly Program3a2: 3;
    /** 3(a)(3) & 3(c)(7)
        Combination of 3(a)(3) and 3(c)(7). */
    readonly Program3a3And3c7: 4;
    /** 3(a)(4)
        Religious, education, benevolent, fraternal, charitable or reformatory purposes. */
    readonly Program3a4: 5;
    /** 3(a)(5)
        Issued by an institution supervised by state or federal authority or by an exempt farmer's cooperative. */
    readonly Program3a5: 6;
    /** 3(a)(7)
        Issued by a receiver or trustee in bankruptcy. */
    readonly Program3a7: 7;
    /** 3(c)(7)
        Qualified hedge-fund under the Investment Company Act of 1940. */
    readonly Program3c7: 8;
    /** Other */
    readonly Other: 99;
}>;
export type CPProgram = (typeof CPProgram)[keyof typeof CPProgram];
