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