import type { PostSharedWishlist } from './types/index.js'; /** * Method responsible for create a snapshot of a wishlist set to allow share it. * * @param id - Universal identifier of the wishlist. * @param data - Details of the information of which wishlist set is going to be shared. * @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 postSharedWishlist: PostSharedWishlist; export default postSharedWishlist;