import type { DeleteWishlistItem } from './types/index.js'; /** * Method responsible for deleting an item from a wishlist. * * @param id - Universal identifier of the wishlist. * @param itemId - Numeric identifier of the item 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 deleteWishlistItem: DeleteWishlistItem; export default deleteWishlistItem;