import * as React from "react"; import { ViewProps } from "../View"; export interface SessionProps extends ViewProps { start: Date | string; end?: Date | string; timezone?: string; onClick?: (evt: React.SyntheticEvent) => void; active?: boolean; location: { title: string; thoroughfare?: string; administrative_area?: string; locality?: string; country?: string; latitude?: number; longitude?: number; is_online?: string; }; bigDate?: boolean; showAttendees?: boolean; availableSeats?: number; limit?: number; mapLink?: boolean; timeFormatter?: (start: string | Date, end?: string | Date, timezone?: string) => any; } declare const EventDate: React.FunctionComponent; export default EventDate;