/// export interface EventCardGridViewInterface { eventName: string; eventDay: string; companyHost: string; date?: string; time?: string; location?: string; image?: string; tag?: string; daysLeft?: number; onShare: () => void; categories?: string[]; onDetail: () => void; onInterest: () => void; height?: number; } declare const EventCardGridView: ({ eventName, eventDay, date, time, location, image, tag, companyHost, daysLeft, onShare, onDetail, onInterest, categories, height }: EventCardGridViewInterface) => JSX.Element; export default EventCardGridView;