/**
 * Pinecone Assistant Data Plane API
 * Pinecone Assistant Engine is a context engine to store and retrieve relevant knowledge from millions of documents at scale. This API supports interactions with assistants.
 *
 * 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 { AssistantFileModel } from './AssistantFileModel';
import type { HighlightModel } from './HighlightModel';
/**
 * The ReferenceModel describes a single reference in a citation.
 * @export
 * @interface ReferenceModel
 */
export interface ReferenceModel {
    /**
     *
     * @type {AssistantFileModel}
     * @memberof ReferenceModel
     */
    file?: AssistantFileModel;
    /**
     *
     * @type {Array<number>}
     * @memberof ReferenceModel
     */
    pages?: Array<number>;
    /**
     *
     * @type {HighlightModel}
     * @memberof ReferenceModel
     */
    highlight?: HighlightModel;
}
/**
 * Check if a given object implements the ReferenceModel interface.
 */
export declare function instanceOfReferenceModel(value: object): boolean;
export declare function ReferenceModelFromJSON(json: any): ReferenceModel;
export declare function ReferenceModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReferenceModel;
export declare function ReferenceModelToJSON(value?: ReferenceModel | null): any;
