import { SERVICE_MAP } from "../common/constants";
import type { GoogleSoapServiceOptions, ImportClass } from "../common/types";
export declare class GoogleSoapService<T extends keyof typeof SERVICE_MAP> {
    private networkCode;
    private applicationName;
    private apiVersion;
    private service;
    private token;
    private _client?;
    constructor(service: T, options: GoogleSoapServiceOptions);
    createClient(logRequests?: boolean, logResponses?: boolean): Promise<ImportClass<typeof SERVICE_MAP, T>>;
    private getSoapHeaders;
}
//# sourceMappingURL=googleSoap.service.d.ts.map