import { CheckoutConfig } from '../interfaces/CheckoutConfig'; import { IBankList } from '../interfaces/responses/BankList'; import { IApiResponseObject } from '../interfaces/responses/ApiResponse'; /** * Represents parameters for retrieving a list of banks. */ export interface IGetListOfBanksParams { /** The total amount for which the list of banks is requested. */ total_amount: number; /** The currency in which the total amount is specified. */ currency?: string; } declare class Bank { private config; constructor(config: typeof CheckoutConfig); getListOfBanks: (params?: IGetListOfBanksParams) => Promise>; } export default Bank;