import { Client } from "soap";
import { SoapClientParams } from "../types";
export declare class SoapClientFacade {
    private construct;
    /**
     * Geth the path for the WSDL file stored on the WSDL folder.
     *
     * @param wsdlFile
     * @param forceFolderPath
     * @returns Path of wsdl file
     */
    private static getWsdlPath;
    static create<T extends Client>({ wsdl, options, }: SoapClientParams): Promise<T>;
}
