import type { DeleteRecentlyViewedProduct } from './types/index.js'; /** * Method responsible for deleting the data of a recently viewed product endpoint * on the Marketing API. * * @param id - Identification number of the recently viewed product to delete. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const deleteRecentlyViewedProduct: DeleteRecentlyViewedProduct; export default deleteRecentlyViewedProduct;