import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import * as fromEnrollmentInformation from '../reducers/root-reducer'; import { Observable } from 'rxjs'; import { Environment } from '@prutech/components'; import { SaveEnrollmentInformation } from '../models/enrollment-info/save-enrollment-information'; import { EnrollmentInformation } from '../models/enrollment-info/enrollment-information'; import * as i0 from "@angular/core"; export declare class EnrollmentInformationService { private http; private store; private environment; enrollmentInformation: Observable; enrollmentInformationLoading: Observable; showEnrollmentInformationValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchLoadEnrollmentInformation(payload: { enrollmentId: number; isInitial?: boolean; }): void; dispatchSetShowEnrollmentInformationValidations(payload: boolean): void; dispatchSaveEnrollmentInformation(payload: SaveEnrollmentInformation): void; loadEnrollmentInformation(enrollmentId: number): Observable; saveEnrollmentInformation(payload: SaveEnrollmentInformation): Observable; createNewEnrollmentInformation(payload: SaveEnrollmentInformation): Observable; updateEnrollmentInformation(payload: SaveEnrollmentInformation): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }