import * as React from 'react'; import { StandaloneCompactThreeDayViewProps } from "./CompactThreeDayView.types.js"; /** * A touch-optimized 3-Day View (3 days) for narrow widths that can be used outside of the * Event Calendar. */ declare const StandaloneCompactThreeDayView: StandaloneCompactThreeDayViewComponent; export { StandaloneCompactThreeDayView }; interface StandaloneCompactThreeDayViewComponent { (props: StandaloneCompactThreeDayViewProps & { ref?: React.ForwardedRef; }): React.JSX.Element; propTypes?: any; }