/**
 * 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 basic error response that contains a message.
 * @export
 * @interface BasicErrorResponse
 */
export interface BasicErrorResponse {
    /**
     *
     * @type {string}
     * @memberof BasicErrorResponse
     */
    message: string;
}
/**
 * Check if a given object implements the BasicErrorResponse interface.
 */
export declare function instanceOfBasicErrorResponse(value: object): boolean;
export declare function BasicErrorResponseFromJSON(json: any): BasicErrorResponse;
export declare function BasicErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BasicErrorResponse;
export declare function BasicErrorResponseToJSON(value?: BasicErrorResponse | null): any;
