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 getWishlistShared: (http: HttpClient) => { query: (input: WishlistInput) => Promise>; }; export default getWishlistShared;