/// export interface FeaturedEventCardProps { eventDay?: string; eventDate?: string; image?: string; eventName?: string; companyHost?: string; tag: string; time: string; location: string; date: string; } declare const FeaturedEventCard: ({ eventDay, eventDate, image, eventName, companyHost, tag, time, location, date, }: FeaturedEventCardProps) => JSX.Element; export default FeaturedEventCard;