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