import { AfterViewInit, EventEmitter } from '@angular/core'; import { Element as StripeElement, ElementType } from './interfaces/element'; import { ElementsOptions } from './interfaces/elements'; import { StripeService } from './services/stripe.service'; import * as i0 from "@angular/core"; export declare class StripeCardComponent implements AfterViewInit { private stripeService; private set options(value); set elementsOptions(optionsIn: ElementsOptions); constructor(stripeService: StripeService); change: EventEmitter<{ card: any; element: StripeElement; }>; complete: EventEmitter<{ card: any; element: StripeElement; }>; error: EventEmitter; elementTypes: Array; private card; private cardElement?; private elements?; private options$; private elementsOptions$; ngAfterViewInit(): void; getCard(): StripeElement | undefined; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }