import React from 'react'; interface PayButtonProps { offerId: string; apiKey: string; buttonColor?: string; textColor?: string; borderRadius?: number; buttonWidth?: string | number; buttonHeight?: string | number; fontWeight?: 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; onPaymentSucceeded?: (transactionId: string) => void; onPaymentFailed?: () => void; buttonTitle?: string; } declare const PayButton: React.FC; export default PayButton;