/**
 * Indicates the type of product the security is associated with. See also the CFICode (461) and SecurityType (167) fields.
 * - Tag: 460
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const Product: Readonly<{
    /** AGENCY */
    readonly AGENCY: 1;
    /** COMMODITY */
    readonly COMMODITY: 2;
    /** CORPORATE */
    readonly CORPORATE: 3;
    /** CURRENCY */
    readonly CURRENCY: 4;
    /** EQUITY */
    readonly EQUITY: 5;
    /** GOVERNMENT */
    readonly GOVERNMENT: 6;
    /** INDEX */
    readonly INDEX: 7;
    /** LOAN */
    readonly LOAN: 8;
    /** MONEYMARKET */
    readonly MONEYMARKET: 9;
    /** MORTGAGE */
    readonly MORTGAGE: 10;
    /** MUNICIPAL */
    readonly MUNICIPAL: 11;
    /** OTHER */
    readonly OTHER: 12;
    /** FINANCING */
    readonly FINANCING: 13;
}>;
export type Product = (typeof Product)[keyof typeof Product];
