import type { Wishlist } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; type WishlistInput = { wishlistToken: string; }; declare const getWishlist: (http: HttpClient) => { query: (input: WishlistInput) => Promise>; }; export default getWishlist;