export declare class JdUnionBase { readonly appKey: string; readonly secretKey: string; private axiosInstance; constructor(options: { appKey: string; secretKey: string; }); private request; execute(api: string, params: { [key: string]: any; }, successCode?: string): Promise; }