import BaseException from '../baseException'; export declare class ClientException extends BaseException { constructor(message: string, status: number, data?: any); } export declare class RequestError extends ClientException { } export declare class ServerError extends ClientException { } export declare class IntermittentError extends ClientException { } export declare class ServerIntermittentError extends IntermittentError { } export declare class ClientIntermittentError extends IntermittentError { constructor(message: string); } export declare class ClientConfigError extends ClientException { constructor(message: string); }