import { AxiosInstance } from 'axios';
import ArifpayTransferResponse from '../interface/arifpaytransferresponse';
declare class Telebirr {
    _httpClient: AxiosInstance;
    constructor(_httpClient: AxiosInstance);
    pay(checkoutSessionID: string): Promise<ArifpayTransferResponse>;
}
export default Telebirr;
