import type { Wishlist } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; type WishlistInput = { house_ids?: number[]; title: string; }; declare const createWishlist: (http: HttpClient) => { query: (input: WishlistInput) => Promise>; }; export default createWishlist;