import * as React from 'react'; import type { StandaloneWeekViewPremiumProps } from "./WeekViewPremium.types.js"; /** * Premium version of a Week View that can be used outside of the Event Calendar. */ declare const StandaloneWeekViewPremium: StandaloneWeekViewPremiumComponent; export { StandaloneWeekViewPremium }; interface StandaloneWeekViewPremiumComponent { (props: StandaloneWeekViewPremiumProps & { ref?: React.ForwardedRef; }): React.JSX.Element; propTypes?: any; }