/**
 * Specifies a type of Security List.
 * - Tag: 1470
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SecurityListType: Readonly<{
    /** Industry Classification */
    readonly IndustryClassification: 1;
    /** Trading List */
    readonly TradingList: 2;
    /** Market / Market Segment List */
    readonly Market: 3;
    /** Newspaper List */
    readonly NewspaperList: 4;
}>;
export type SecurityListType = (typeof SecurityListType)[keyof typeof SecurityListType];
