import React from 'react'; import { WalletPropsOptions, ReadyEvent } from '../utilities'; interface InputProps { options?: WalletPropsOptions; onReady: (data: ReadyEvent) => void; } declare const EasyPaisaPaymentElement: ({ options, onReady }: InputProps) => React.JSX.Element; declare const _default: typeof EasyPaisaPaymentElement & { confirmPayment: (value: string, _name?: any) => Promise; clear: () => void; }; export default _default;