import { Client as SoapClient, createClientAsync as soapCreateClientAsync, IExOptions as ISoapExOptions } from 'soap';
import { GetMcmSupplyChainDiagnosticsDownloadUrl } from './definitions/GetMcmSupplyChainDiagnosticsDownloadUrl';
import { GetMcmSupplyChainDiagnosticsDownloadUrlResponse } from './definitions/GetMcmSupplyChainDiagnosticsDownloadUrlResponse';
import { AdsTxtService } from './services/AdsTxtService';
export interface AdsTxtServiceClient extends SoapClient {
    AdsTxtService: AdsTxtService;
    getMcmSupplyChainDiagnosticsDownloadUrlAsync(getMcmSupplyChainDiagnosticsDownloadUrl: GetMcmSupplyChainDiagnosticsDownloadUrl, options?: ISoapExOptions): Promise<[
        result: GetMcmSupplyChainDiagnosticsDownloadUrlResponse,
        rawResponse: any,
        soapHeader: any,
        rawRequest: any
    ]>;
}
/** Create AdsTxtServiceClient */
export declare function createClientAsync(...args: Parameters<typeof soapCreateClientAsync>): Promise<AdsTxtServiceClient>;
