import { Observable } from 'rxjs/Observable'; import { HttpClient } from '@angular/common/http'; import { CookieService } from '../../services/cookie.service'; import { ApiConstant } from './../../utils/api-constant/api-constant.service'; import { PlatformService } from './../../services/platform.services'; import { AuthTokenService } from '../../services/authToken.service'; export declare class ConfirmationFormService { private http; private api; private platformService; private cookieService; private authTokenService; dataStore: Observable; private update; private store; constructor(http: HttpClient, api: ApiConstant, platformService: PlatformService, cookieService: CookieService, authTokenService: AuthTokenService); setStore(obj: any): void; nextStep(): void; prevStep(): void; closeModal(): void; closeSuccessModal(): void; sendForm(): void; }