/// export interface EventCardListViewProps { eventDay: string; image?: string; eventName: string; companyHost: string; tag: string; time: string; location?: string; date: string; dateRange: string; options: { value: string; label: string; }[]; onDetailClick: () => void; onFavorite: () => void; onLike: () => void; onSearch: () => void; onShare: () => void; } declare const EventCardListView: ({ eventDay, image, eventName, companyHost, tag, time, location, dateRange, date, options, onDetailClick, onFavorite, onLike, onSearch, onShare }: EventCardListViewProps) => JSX.Element; export default EventCardListView;