import { ApiAfterHandler, ApiDesc, ApiOptions } from "../ApiClient";
import { AxiosResponse } from "axios";
export declare class ApiCheckSignAfterHandler implements ApiAfterHandler {
    static newInstance(): ApiAfterHandler;
    convertToSignParams(signParams: any, key: string, value: any): void;
    handle(api: ApiDesc, options: ApiOptions, response: AxiosResponse<any, any>): AxiosResponse<any, any>;
    order(): number;
}
export declare class ApiDecryptAfterHandler implements ApiAfterHandler {
    static newInstance(): ApiAfterHandler;
    handle(api: ApiDesc, options: ApiOptions, response: AxiosResponse<any, any>): AxiosResponse<any, any>;
    order(): number;
}
