import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import * as fromITARequest from '../reducers/root-reducer'; import { Environment } from '@prutech/components'; import { SaveParticipantInfo } from '../models/participant-info/save-participant-info'; import { ParticipantInfo } from '../models/participant-info/participant-info'; import * as i0 from "@angular/core"; export declare class ParticipantInfoService { private http; private store; private environment; participantInfo: Observable; participantInfoLoading: Observable; showParticipantInfoValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchLoadParticipantInfo(payload: number): void; dispatchSaveParticipantInfo(payload: SaveParticipantInfo): void; loadParticipantInfo(payload: number): Observable; saveParticipantInfo(payload: SaveParticipantInfo): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }