import type { DeletePaymentToken } from './types/index.js'; /** * Method responsible for deleting a user payment token. This is used for deleting * a credit card. * * @param paymentTokenId - Universal identifier of the token to be deleted. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const deletePaymentToken: DeletePaymentToken; export default deletePaymentToken;