import { FunctionComponent } from 'react'; import { CheckoutPaymentMethodType } from '@mangopay/checkout-sdk-elements-core'; export interface ApplePayPaymentMethodProps { disabled?: boolean; onSelect?: () => void; activePaymentMethod?: CheckoutPaymentMethodType; } export declare const ApplePayPaymentMethod: FunctionComponent;