import { ComplyCubeError } from "./ComplyCubeError"; export declare class ComplyCubeApiError extends ComplyCubeError { readonly responseBody: unknown; readonly statusCode: number; readonly type: string; readonly param: unknown; private constructor(); static fromResponse(responseBody: unknown, statusCode: number): ComplyCubeApiError; isClientError(): boolean; }