///
import { ApiResponse, HttpRequest } from '../coreInterfaces';
import { SchemaValidationError } from '../schema';
/**
* Thrown when the API response does not match the schema.
*/
export declare class ResponseValidationError extends Error implements ApiResponse {
request: HttpRequest;
statusCode: number;
headers: Record;
result: never;
body: string | Blob | NodeJS.ReadableStream;
errors: SchemaValidationError[];
constructor(apiResponse: ApiResponse, errors: SchemaValidationError[]);
}
//# sourceMappingURL=responseValidationError.d.ts.map