import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import * as fromAssessment from '../../reducers/root-reducer'; import { Environment } from '@prutech/components'; import { SaveEducationLicenses } from '../../models/education/licenses-certificates/save-education-licenses'; import { LicensesCertificate } from '../../models/education/licenses-certificates/licenses-certificate'; import { AssessmentType } from '../../../../constants/assessment-type'; import * as i0 from "@angular/core"; export declare class EducationLicenseService { private http; private store; private environment; educationLicenses: Observable; educationLicensesLoading: Observable; showEducationLicensesValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchSetShowEducationLicensesValidations(payload: boolean): void; dispatchLoadEducationLicenses(payload: { assessmentId: number; isInitial?: boolean; assessmentType: AssessmentType; }): void; dispatchSaveEducationLicenses(payload: { saveEducationLicenses: SaveEducationLicenses; assessmentType: AssessmentType; }): void; loadEducationLicenses(payload: { assessmentId: number; isInitial?: boolean; assessmentType: AssessmentType; }): Observable; saveEducationLicenses(payload: { saveEducationLicenses: SaveEducationLicenses; assessmentType: AssessmentType; }): Observable; createNewEducationLicenses(payload: { saveEducationLicenses: SaveEducationLicenses; assessmentType: AssessmentType; }): Observable; updateEducationLicenses(payload: { saveEducationLicenses: SaveEducationLicenses; assessmentType: AssessmentType; }): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }