import { AxiosInstance, AxiosRequestConfig } from 'axios'; import { AttachPaymentIntentParams, CreatePaymentIntentParams, PaymentIntentResource, RetrievePaymentIntentParams } from './types'; export declare const createPaymentIntent: (data: CreatePaymentIntentParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise>; export declare const retrievePaymentIntent: (data: RetrievePaymentIntentParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise>; export declare const attachPaymentIntent: (data: AttachPaymentIntentParams, axiosInstance: AxiosInstance, config?: AxiosRequestConfig) => Promise>;