/**
 * Defines what type of fields to be returned by a `FieldSearchRequest`.
 */
export declare enum FieldType {
    /**
     * Results include both streaming (real-time and delayed) and reference (static) fields.
     */
    All = "All",
    /**
     * Results include fields that provide reference data (static).
     */
    Static = "Static",
    /**
     * Results include fields that provide streaming data (real-time and delayed).
     */
    RealTime = "RealTime"
}
/**
 * Defines the language in which the descriptions are returned.
 * @default English
 */
export declare enum Language {
    English = "ENGLISH",
    Japanese = "JAPANESE",
    French = "FRENCH",
    German = "GERMAN",
    Spanish = "SPANISH",
    Portuguese = "PORTUGUESE",
    Italian = "ITALIAN",
    ChineseTrad = "CHINESE_TRAD",
    Korean = "KOREAN",
    ChineseSimp = "CHINESE_SIMP",
    Russian = "RUSSIAN"
}
