import React from 'react'; import { SectionList, SectionListProps } from 'react-native'; import { AgendaProps, Event as Event, ExtendedMarkedDays, ThemeType } from 'src/types'; declare type EventsProps = { currentDay: Date; markedDays: ExtendedMarkedDays; onEventPress?: (event: Event) => void; renderSectionHeader?: SectionListProps['renderSectionHeader']; theme?: ThemeType; viewType: AgendaProps['viewType']; firstDayMonday: boolean; }; export declare const Events: React.ForwardRefExoticComponent>>; export {};