import { AxiosInstance } from 'axios';
import ArifpayTransferResponse from '../interface/arifpaytransferresponse';
declare class AwashWallet {
    _httpClient: AxiosInstance;
    constructor(_httpClient: AxiosInstance);
    transfer(checkoutSessionID: string, phoneNumber: string): Promise<ArifpayTransferResponse>;
    verify(checkoutSessionID: string, otp: string, fail?: boolean): Promise<ArifpayTransferResponse>;
}
export default AwashWallet;
