import React from 'react'; import { CheckoutData } from '../hooks/useCheckout'; interface ApplePayButtonProps { className?: string; disabled?: boolean; onSuccess?: (payment: any) => void; onError?: (error: string) => void; onCancel?: () => void; storeName?: string; currencyCode?: string; variant?: 'default' | 'outline' | 'ghost'; size?: 'sm' | 'md' | 'lg'; checkout: CheckoutData | null; } export declare const ApplePayButton: React.FC; export default ApplePayButton;