import React from 'react'; import { CardOptions, ReadyEvent } from '../utilities'; interface CardInputProps { options?: CardOptions; onReady: (data: ReadyEvent) => void; onBinDiscount?: (data: any) => void; showAllPaymentMethods?: boolean; } declare const PaymentElement: ({ options, onReady, onBinDiscount, showAllPaymentMethods }: CardInputProps) => React.JSX.Element; declare const _default: typeof PaymentElement & { confirmPayment: (value: string, customer: { name: string; }) => Promise; clear: () => void; }; export default _default;