export declare class ClientError extends Error { readonly method: string; readonly url: string; readonly params: any; readonly statusCode?: number | null; readonly responseData: any; readonly errorCode?: string | null; readonly errorType: ErrorType; constructor({ method, url, params, statusCode, responseData, cause, errorCode, errorType }: ConstructorParams); private static buildMessage; } type ConstructorParams = { method: string; url: string; params: any; responseData: any; errorType: ErrorType; statusCode?: number; errorCode?: string; cause?: unknown; }; export declare enum ErrorType { Other = "other", Instability = "instability" } export {};