import React from 'react'; import { PaymentData, SimpliPayConfig, TransactionResult } from '../types'; interface OtpEntryProps { paymentData: PaymentData; config: SimpliPayConfig; transactionResponse: any; setStep: (step: any) => void; goBack: () => void; onClose: () => void; setError: (error: string) => void; onSuccess: (result: TransactionResult) => void; } declare const OtpEntry: React.FC; export default OtpEntry;