/**
 * Code to identify the type of BidDescriptor (400).
 * - Tag: 399
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const BidDescriptorType: Readonly<{
    /** Sector */
    readonly Sector: 1;
    /** Country */
    readonly Country: 2;
    /** Index */
    readonly Index: 3;
}>;
export type BidDescriptorType = (typeof BidDescriptorType)[keyof typeof BidDescriptorType];
