import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; type HouseWishlistInput = { houseId: number; }; declare const deleteHouseWishlist: (http: HttpClient) => { query: (input: HouseWishlistInput) => Promise>; }; export default deleteHouseWishlist;