import { AcceptsCredentials } from './credentials'; import { PartnerLinkCredentials } from '../types'; export declare class Service extends AcceptsCredentials { private jwt; constructor(credentials: PartnerLinkCredentials); protected soapRequest(body: string, credentialUrl: string, path: string, action: string): Promise; protected tokenPostRequest(body: string, credentialUrl: string, path: string): Promise; protected postRequest(body: string, credentialUrl: string, path: string): Promise; protected log(...messages: any[]): void; protected parseXml(xml: string): Promise; private getJwt; private stripEmptyLines; }