export declare enum RpcErrorCode { /** * Invalid JSON was received by the server. * or An error occurred on the server while parsing the JSON text. */ PARSE_ERROR = -32700, /** * The JSON sent is not a valid Request object. */ INVALID_REQUEST = -32600, /** * The method does not exist / is not available. */ METHOD_NOT_FOUND = -32601, /** * Invalid method parameter(s). */ INVALID_PARAMS = -32602, /** * Internal JSON-RPC error. */ INTERNAL_ERROR = -32603, /** * Reserved for implementation-defined server-errors. */ SERVER_ERROR = -32000 }