import { ULTIPA, RequestType } from "../types";
import { ConnectionBase } from "../connection/extra/connection.base";
export declare const retryHelper: {
    getRetry: (commonReq?: RequestType.RequestConfig) => {
        currentRetry: {
            current?: number;
            max?: number;
        };
        nextRetry: {
            current: number;
            max?: number;
        };
    };
    check: (conn: ConnectionBase, response: ULTIPA.Response<any>, commonReq: RequestType.RequestConfig, graphSetName: string) => Promise<{
        canRetry: boolean;
        currentRetry: {
            current?: number;
            max?: number;
        };
        nextRetry: {
            current: number;
            max?: number;
        };
    }>;
};
