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