import { HttpClient, HttpParams } from '@angular/common/http'; import { Observable } from 'rxjs'; import { PytApisConfig } from "./pyt-apis.module"; import { ProposalTrip } from "./trip"; import * as i0 from "@angular/core"; export declare class ProposalService { private http; private config; constructor(http: HttpClient, config: PytApisConfig); findAll(filterParams?: HttpParams): Observable; findByNumber(tripNumber: number): Observable; findByRegion(regionName: string, filterParams?: HttpParams): Observable; findByCity(countryName: string, cityName: string, filterParams?: HttpParams): Observable; findByUser(userId: string, filterParams?: HttpParams): Observable; getTrips(): Observable; createTrip(trip: ProposalTrip): Observable; getTrip(tripNumber: number): Observable; updateTrip(trip: ProposalTrip): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }