import type { SupportedCurrencies } from '../../../../entities/index.ts'; import type { HttpClient } from '../../../../services/index.ts'; import type { ApiError, Response } from '../../../types/index.ts'; type MakeRequestWishlistInput = { currency: SupportedCurrencies; end_date: string; private_token: string; start_date: string; }; declare const makeRequestWishlist: (http: HttpClient) => { query: (input: MakeRequestWishlistInput) => Promise>; }; export default makeRequestWishlist;