import { Http } from '@angular/http'; import { Observable } from 'rxjs'; import { EnvironmentService } from '@vendasta/environment-service'; import { SessionService } from '@vendasta/session-service'; export declare class AccountsApiService { private http; private environmentService; private sessionService; private activateAddonUrl; private host; private sessionId; constructor(http: Http, environmentService: EnvironmentService, sessionService: SessionService); activateAddon(businessId: string, appId: string, addonId: string, partnerId: string): Observable; private extractBody(response); private apiOptions(); private readonly accountsHost; }