import React from 'react'; import { MonnifyProps } from '../types'; type MonnifyPaymentButtonProps = { text?: string; className?: string; children?: React.ReactNode; onLoadStart?: any; onLoadComplete?: any; onComplete?: any; onClose?: any; options: MonnifyProps; }; declare const MonnifyPaymentButton: ({ text, className, children, onLoadStart, onLoadComplete, onComplete, onClose, options, }: MonnifyPaymentButtonProps) => JSX.Element; export default MonnifyPaymentButton;