/// import { DisabledDataProps } from '../../date-picker'; export interface MonthProps { showFullMonth?: boolean; disabledDate?: DisabledDataProps; } declare function Month(props: MonthProps): JSX.Element; export default Month;