import { FunctionComponent } from 'react'; import { CheckoutPaymentMethodType } from '@mangopay/checkout-sdk-elements-core'; export interface PaymentMethodProps { id: string; ariaLabel: string; label: string; type: string; icon: JSX.Element; disabled?: boolean; onSelect?: () => void; activePaymentMethod?: CheckoutPaymentMethodType; } export declare const PaymentMethod: FunctionComponent;