import type { LocalizedString } from './Exports'; export type Wishlist = { id: string; legacy: boolean; multiInquiryHouses: { houses: HouseWishlistType[]; housesCount: number; }; privateToken: string; title: string; type: 'multiInquiryWishlist'; user?: { firstName: string; }; }; export type HouseWishlistType = { bathrooms: number; bedrooms: number; capacity: number; destination: LocalizedString; firstPhotoUrl: string; id: number; maxPrice: { CHF: number; EUR: number; GBP: number; USD: number; }; minPrice: { CHF: number; EUR: number; GBP: number; USD: number; }; name: string; slug: LocalizedString; };