export default class DaysView extends React.Component<any, any, any> {
    static defaultProps: {
        isValidDate: () => boolean;
        renderDay: (props: any, date: any) => JSX.Element;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    renderNavigation(): JSX.Element;
    renderDayHeaders(): JSX.Element;
    renderDays(): JSX.Element[];
    renderDay(date: any, startOfMonth: any, endOfMonth: any): any;
    renderFooter(): JSX.Element;
    _setDate: (e: any) => void;
}
import React from "react";
