import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { GvEnvironment } from '../common/interfaces/journey.interface'; import { BundleDetailResponse, CreateRedemptionResponse } from './bundle-detail.types'; import * as i0 from "@angular/core"; export declare class BundleService { http: HttpClient; environment: GvEnvironment; constructor(http: HttpClient, environment: GvEnvironment); getBundleDetail(campaignId: string, bundleId: string): Observable; createRedemption(campaign_id: string, redemption_option_id: string, amount_to_pay: number): Observable; createRedemptionAlternate(campaign_id: string, redemption_option_id: string, amount_to_pay: number): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }