exportinterfaceEventTimeProps {
/** The start date of the event. */startDate: Date;
/** The end date of the event. */endDate: Date;
/** Details around the event. */details?: string | object;
}
declareconstEventTime: (props: EventTimeProps) =>any;
exportdefaultEventTime;