export declare const INVALID_SERVICE_TYPE = "INVALID_SERVICE_TYPE"; export declare const REST_CLIENT_ERROR = "REST_CLIENT_ERROR"; export declare const SOAP_CLIENT_ERROR = "SOAP_CLIENT_ERROR"; export declare class GenericError extends Error { type: string; data?: object | undefined; constructor(message: string, type: string, data?: object | undefined); } export declare class InvalidServiceTypeError extends GenericError { constructor(message: string, data: object); } export declare class RestClientError extends GenericError { constructor(message: string, data?: object); } export declare class SoapClientError extends GenericError { constructor(message: string, data: object); }