import { ApiError } from "../models/http/ApiError"; import { ApiResponse } from "../models/http/ApiResponse"; /** * Determines whether or not an API response can be used to construct a chat response. * * @internal */ export declare class ApiResponseValidator { static validate(apiResponse: ApiResponse, statusCode?: number): ApiError | undefined; private static validateResponseProp; private static validateMetaProp; private static checkForApiErrors; }