export interface GenTeaserEventProps {
    /** The start date & time of the event  */
    startDate?: string;
    /** The end date & time of the event  */
    endDate?: string;
    /** The address of the event */
    location?: string;
    /** Any details about the event */
    details?: string;
    /** What type of calendars you would like users to be able to add to.
     'google', 'yahoo', and 'outlookcom' if passed will render as specific
     formats, all others render as base ics format.
     */
    calendars?: string[];
    /** The title of the event */
    title?: string;
    /** A description of the event */
    description?: string;
}
/**
 * Event
 */
declare const GenTeaserEvent: (props: GenTeaserEventProps) => any;
export default GenTeaserEvent;
