import { ReactElement } from 'react'; import { PaymentCardProps, StatefulPaymentCardProps } from './types'; export declare const PaymentCard: { (props: PaymentCardProps): ReactElement; displayName: string; }; export declare const StatefulPaymentCard: { (props: StatefulPaymentCardProps): ReactElement; displayName: string; };