/**
 * Indicates whether instruments are pre-listed only or can also be defined via user request
 * - Tag: 1198
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ListMethod: Readonly<{
    /** pre-listed only */
    readonly PreListedOnly: 0;
    /** user requested */
    readonly UserRequested: 1;
}>;
export type ListMethod = (typeof ListMethod)[keyof typeof ListMethod];
