import { EventTypes, HostEventPics, ServiceAudience } from '@jealous-robot-dev/drophr-common'; export interface EventInSearch { id: string; name: string; raiting: number; capacity: number; type: EventTypes; is_saved: boolean; pics: HostEventPics[]; reviews_count: number; audience: ServiceAudience; fee: { amount: number; isMin: boolean; }; }