import { EventEmitter } from '../../stencil-public-runtime'; import { PaymentMethodOption } from './payment-method-option-utils'; import { PaymentMethodPayload } from './payment-method-payload'; export declare class JustifiSavedPaymentMethod { paymentMethodOption: PaymentMethodOption; isSelected: boolean; paymentMethodOptionSelected: EventEmitter; resolvePaymentMethod(insuranceValidation: any): Promise; onPaymentMethodOptionClick: (e: any) => void; render(): any; }