import type { PatchWishlistItem } from './types/index.js'; /** * Method responsible for setting the quantity and the size of a product in a * wishlist. * * @param id - Universal identifier of the wishlist. * @param itemId - Numeric identifier of the item to patch. * @param data - Details to update, namely quantity and size. * @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 patchWishlistItem: PatchWishlistItem; export default patchWishlistItem;