/** The props for the [[Month]] component. */
export interface MonthProps {
    displayIndex: number;
    displayMonth: Date;
}
/** Render a month. */
export declare function Month(props: MonthProps): JSX.Element;
