import * as React from 'react'; import type { StandaloneCompactWeekViewPremiumProps } from "./CompactWeekViewPremium.types.js"; /** * Premium version of a touch-optimized Week View (7 days) for narrow widths that can be used * outside of the Event Calendar. */ declare const StandaloneCompactWeekViewPremium: StandaloneCompactWeekViewPremiumComponent; export { StandaloneCompactWeekViewPremium }; interface StandaloneCompactWeekViewPremiumComponent { (props: StandaloneCompactWeekViewPremiumProps & { ref?: React.ForwardedRef; }): React.JSX.Element; propTypes?: any; }