import React from 'react'; import { CheckoutData } from '../hooks/useCheckout'; interface GooglePayButtonProps { className?: string; disabled?: boolean; onSuccess?: (payment: any) => void; onError?: (error: string) => void; onCancel?: () => void; checkout: CheckoutData | null; } export declare const GooglePayButton: React.FC; export default GooglePayButton;