import type { PutSharedWishlist } from './types/index.js'; /** * Method responsible for update a shared wishlist, syncronizing the prior snapshot * with the current state of the related wishlist set. * * @param id - Universal identifier of the shared wishlist. * @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 putSharedWishlist: PutSharedWishlist; export default putSharedWishlist;