import { Actions } from '@ngrx/effects'; import { CreatePaymentIntentFail, CreatePaymentIntentSuccess, StripePayFail, StripePaySuccess } from './stripe-elements.actions'; import { StripeElementsService } from '../stripe-elements.service'; import { Observable } from 'rxjs'; export declare class StripeElementsEffects { private actions$; private service; constructor(actions$: Actions, service: StripeElementsService); stripePay$: Observable; paymentIntentSuccess$: Observable; }