import { AxiosInstance, AxiosRequestConfig } from 'axios'; import { CreatePaymentParams, ListAllPaymentsParams, PaymentResource, RetrievePaymentParams } from './types'; export declare const createPayment: (data: CreatePaymentParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise; export declare const listAllPayments: (data: ListAllPaymentsParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise; export declare const retrievePayment: (data: RetrievePaymentParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise;