import type { GetWishlistSet } from './types/index.js'; /** * Method responsible for loading the information of a set from the wishlist. * * @param id - Universal identifier of the wishlist. * @param setId - Global identifier of the set to retrieve information from. * @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 getWishlistSet: GetWishlistSet; export default getWishlistSet;