import { HttpClient } from '@angular/common/http'; import { InitialRecord } from 'ng-pli-util'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class InitialRecordService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns an application by id */ getById(id: string): Observable; /** It returns an application by id with basic properties */ getByIdLight(id: string): Observable; /** It returns the list of application by prom codigo */ getByPatCodigo(promCodigo: number): Observable; /** It returns the list of application by username */ getByUsername(username: string): Observable; /** It returns the list of application by username and patCodigo */ getByUsernameAndPatCodigo(username: string, patCodigo: number): Observable; /** It saves an application */ save(initialRecord: InitialRecord): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }