/**
 * 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.
 */
/**
 * A fact
 * @export
 * @interface Fact
 */
export interface Fact {
    /**
     * The content of the fact.
     * @type {string}
     * @memberof Fact
     */
    content: string;
}
/**
 * Check if a given object implements the Fact interface.
 */
export declare function instanceOfFact(value: object): boolean;
export declare function FactFromJSON(json: any): Fact;
export declare function FactFromJSONTyped(json: any, ignoreDiscriminator: boolean): Fact;
export declare function FactToJSON(value?: Fact | null): any;
