import type { PostWishlistSet } from './types/index.js'; /** * Method responsible for adding a new set in wishlist. * * @param id - Universal identifier of the wishlist. * @param data - Details of the set to add to the 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 postWishlistSet: PostWishlistSet; export default postWishlistSet;