import * as React from 'react'; import { StandaloneMonthViewProps } from "./MonthView.types.js"; /** * A Month View that can be used outside of the Event Calendar. */ declare const StandaloneMonthView: StandaloneMonthViewComponent; export { StandaloneMonthView }; interface StandaloneMonthViewComponent { (props: StandaloneMonthViewProps & { ref?: React.ForwardedRef; }): React.JSX.Element; propTypes?: any; }