/// interface IndustryEventCardInterface { image: string; name: string; location: string; date: string; description: string; } declare const IndustryEventCard: ({ image, name, location, date, description, }: IndustryEventCardInterface) => JSX.Element; export default IndustryEventCard;