/**
 * Indexea OpenAPI
 * OpenAPI of Indexea
 *
 * The version of the OpenAPI document: 1.0.0
 * Contact: indexea.com@gmail.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * 分词对象
 * @export
 * @interface Analyze
 */
export interface Analyze {
    /**
     *
     * @type {string}
     * @memberof Analyze
     */
    analyzer?: string;
    /**
     *
     * @type {string}
     * @memberof Analyze
     */
    text?: string;
}
/**
 * Check if a given object implements the Analyze interface.
 */
export declare function instanceOfAnalyze(value: object): boolean;
export declare function AnalyzeFromJSON(json: any): Analyze;
export declare function AnalyzeFromJSONTyped(json: any, ignoreDiscriminator: boolean): Analyze;
export declare function AnalyzeToJSON(value?: Analyze | null): any;
