///
import { StripeElementsConfig } from './stripe-elements.module';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import ElementsOptions = stripe.elements.ElementsOptions;
export declare class StripeElementsService {
private config;
private http;
constructor(config: StripeElementsConfig, http: HttpClient);
get stripeKey(): string;
get elementsOptions(): ElementsOptions;
createPaymentIntent(payload: any): Observable;
}