/**
 * Pinecone Assistant Control Plane API
 * Pinecone Assistant Engine is a context engine to store and retrieve relevant knowledge  from millions of documents at scale. This API supports creating and managing 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 configuration updates for the assistant.
 * @export
 * @interface UpdateAssistantRequest
 */
export interface UpdateAssistantRequest {
    /**
     * Description or directive for the assistant to apply to all responses.
     * @type {string}
     * @memberof UpdateAssistantRequest
     */
    instructions?: string | null;
    /**
     *
     * @type {object}
     * @memberof UpdateAssistantRequest
     */
    metadata?: object | null;
}
/**
 * Check if a given object implements the UpdateAssistantRequest interface.
 */
export declare function instanceOfUpdateAssistantRequest(value: object): boolean;
export declare function UpdateAssistantRequestFromJSON(json: any): UpdateAssistantRequest;
export declare function UpdateAssistantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAssistantRequest;
export declare function UpdateAssistantRequestToJSON(value?: UpdateAssistantRequest | null): any;
