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