gamingpe-chatbot
Version:
This chatbot can be used for the Deposit, Withdrawal and Solving query for the pending transaction faster than before.
12 lines (11 loc) • 551 B
TypeScript
import React from "react";
import { TransactionMode } from "@/app/enums/transactionMode.enum";
import { PaymentOptionsEnum } from "@/app/enums/deposit.enum";
import { ITransaction } from "@/interface/transaction.interface";
import { WithdrawalOptionsEnum } from "@/app/enums/withdraw.enum";
interface PaymentMethodsProps {
handleOptionClick: (option: TransactionMode | PaymentOptionsEnum | WithdrawalOptionsEnum) => void;
transaction: ITransaction;
}
declare const PaymentMethods: React.FC<PaymentMethodsProps>;
export default PaymentMethods;