import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import * as fromVentureWorklistReducer from '../reducers/root.reducer'; import { Observable } from 'rxjs'; import { VentureWorkListItem } from '../models/venture-worklist-item'; import { Environment } from '@prutech/components'; import { Lookup } from '@prutech/components'; import { VentureUpdateStatus } from '../models/venture-update-status'; import * as i0 from "@angular/core"; export declare class VentureWorklistService { private http; private environment; private store; ventureWorklistResults: Observable; loading: Observable; ventureWorklistStatusLookup: Observable; lookupLoading: Observable; constructor(http: HttpClient, environment: Environment, store: Store); dispatchLoadVentureWorklist(payload?: any): void; getVentureWorklist(): Observable; dispatchUpdateStatusVentureWorklist(payload?: any): void; updateStatusVentureWorklist(payload: VentureUpdateStatus): Observable; dispatchGetLookups(model?: string[]): void; loadVentureWorklistLookup(payload: string[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }