import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AuthenticationService } from './authentication.service'; import { PliCnfStatusFlow, PliCnfStatusEmail } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class PliCnfStatusFlowService { private environment; private httpClient; private authService; private headerJson; constructor(environment: any, httpClient: HttpClient, authService: AuthenticationService); /** It returns all list of status by prom code */ getById(statusFlowId: number): Observable; /** It returns all list of status by prom code */ getAllByPromCode(promCode: number): Observable; /** It returns all list of status by prom code */ getAllActiveByPromCode(promCode: number): Observable; getMailConfiguration(statusFlow: number): Observable; saveMailConfiguration(conf: PliCnfStatusEmail): Observable; save(cnfStatusFlow: PliCnfStatusFlow): Observable; saveAll(cnfStatusFlow: PliCnfStatusFlow[]): Observable; getAllActiveByStatusEndId(statusEnd: number): Observable; sendEmail(statusFlowId: number, listApplicationId: Array): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }