import * as soap from "soap";
import { Config } from "./config";
/**
 * Setup a soap client that is compatible with CW1 eAdapter service.
 *
 * @param config eAdapter config
 * @returns soap client and WSDL object
 */
export declare function setupSoap(config: Config): Promise<{
    wsdl: soap.WSDL;
    client: soap.Client;
}>;
