import { ConnectionBase } from "../connection.base";
import { AlgoParams, RequestType, ULTIPA } from "../../../types";
declare class AlgorithmsDegrees extends ConnectionBase {
    private __common_AlgorithmsDegrees;
    algo_degree(req: AlgoParams.degree, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>;
    algo_closeness_centrality(req: AlgoParams.closeness_centrality, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>;
    algo_graph_centrality(req: AlgoParams.graph_centrality, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>;
    algo_betweenness_centrality(req: AlgoParams.betweenness_centrality, commonReq?: RequestType.RequestConfig): Promise<ULTIPA.Response<ULTIPA.UQLReply>>;
}
export { AlgorithmsDegrees };
