import type { HttpClient, IncludeType } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type WishlistTokenInput = { wishlistToken: string; include?: IncludeType; pagination?: { per: string; page: string; }; }; declare const getUserWishlist: (http: HttpClient) => { query: (input: WishlistTokenInput) => Promise>; }; export default getUserWishlist;