/**
 * 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.
 */
/**
 * The HighlightModel represents a portion of a referenced document that directly supports or is relevant to the response.
 * @export
 * @interface HighlightModel
 */
export interface HighlightModel {
    /**
     * The type of the highlight. Currently it is always text.
     * @type {string}
     * @memberof HighlightModel
     */
    type: string;
    /**
     *
     * @type {string}
     * @memberof HighlightModel
     */
    content: string;
}
/**
 * Check if a given object implements the HighlightModel interface.
 */
export declare function instanceOfHighlightModel(value: object): boolean;
export declare function HighlightModelFromJSON(json: any): HighlightModel;
export declare function HighlightModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HighlightModel;
export declare function HighlightModelToJSON(value?: HighlightModel | null): any;
