///
import { FlatListProps } from 'react-native';
import { Month_Type } from './utils/data';
import { LOCALE_TYPE } from './utils/locale';
import { Style } from './index';
interface Props {
pastYearRange: number;
futureYearRange: number;
initialNumToRender: number;
locale: LOCALE_TYPE;
handlePress: (date: string) => void;
startDate: string | null;
endDate: string | null;
style?: Style;
flatListProps?: FlatListProps;
isMonthFirst?: boolean;
disabledBeforeToday?: boolean;
disabledAfterToday?: boolean;
}
declare const CalendarList: ({ pastYearRange, futureYearRange, initialNumToRender, locale, handlePress, startDate, endDate, flatListProps, isMonthFirst, disabledBeforeToday, disabledAfterToday, style, }: Props) => JSX.Element;
export default CalendarList;
//# sourceMappingURL=CalendarList.d.ts.map