import React from 'react'; import { Month_Type } from './utils/data'; import { LOCALE_TYPE } from './utils/locale'; import { Style } from './index'; interface Props { item: Month_Type; locale: LOCALE_TYPE; handlePress: (date: string) => void; startDate: string | null; endDate: string | null; isMonthFirst?: boolean; disabledBeforeToday?: boolean; disabledAfterToday?: boolean; style?: Style; } declare function Month({ item, locale, handlePress, startDate, endDate, isMonthFirst, disabledBeforeToday, disabledAfterToday, style, }: Props): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default; //# sourceMappingURL=Month.d.ts.map