import { rvResp as ServerRetrieveVertexResponse, cvResp as ServerCreateVertexResponse, cvReq as CreateVertexRequest, rxReq as RetrieveXRequest } from '@aitmed/protorepo/js/ecos/v1beta1/ecos_api_pb'; export { retrieveVertexService, createVertexService, handleServerError }; declare function createVertexService(_request: CreateVertexRequest): Promise<[Error | '', ServerCreateVertexResponse]>; declare function retrieveVertexService(_request: RetrieveXRequest): Promise<[Error | '', ServerRetrieveVertexResponse]>; declare function handleServerError({ response, fn, args, resolve, error }: { response: any; fn: any; args: any; resolve: any; error: any; }): Promise;