export interface EventTimeProps {
    /** The start date of the event. */
    startDate: Date;
    /** The end date of the event. */
    endDate: Date;
    /** Details around the event. */
    details?: string | object;
}
declare const EventTime: (props: EventTimeProps) => any;
export default EventTime;
