/**
 * 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.
 */
import type { Entailment } from './Entailment';
import type { Fact } from './Fact';
/**
 * A fact that was evaluated.
 * @export
 * @interface EvaluatedFact
 */
export interface EvaluatedFact {
    /**
     *
     * @type {Fact}
     * @memberof EvaluatedFact
     */
    fact: Fact;
    /**
     *
     * @type {Entailment}
     * @memberof EvaluatedFact
     */
    entailment: Entailment;
}
/**
 * Check if a given object implements the EvaluatedFact interface.
 */
export declare function instanceOfEvaluatedFact(value: object): boolean;
export declare function EvaluatedFactFromJSON(json: any): EvaluatedFact;
export declare function EvaluatedFactFromJSONTyped(json: any, ignoreDiscriminator: boolean): EvaluatedFact;
export declare function EvaluatedFactToJSON(value?: EvaluatedFact | null): any;
