/**
 * Evaluation API
 * Provides endpoints for evaluating RAG systems using various metrics.
 *
 * The version of the OpenAPI document: 2025-01
 * Contact: support@pinecone.io
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * The entailment of a fact.
 * @export
 */
export declare const Entailment: {
    readonly Entailed: "entailed";
    readonly Contradicted: "contradicted";
    readonly Neutral: "neutral";
};
export type Entailment = typeof Entailment[keyof typeof Entailment];
export declare function EntailmentFromJSON(json: any): Entailment;
export declare function EntailmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Entailment;
export declare function EntailmentToJSON(value?: Entailment | null): any;
