import * as React from 'react'; import { StandaloneAgendaViewProps } from "./AgendaView.types.js"; /** * An Agenda View that can be used outside of the Event Calendar. */ declare const StandaloneAgendaView: StandaloneAgendaViewComponent; export { StandaloneAgendaView }; interface StandaloneAgendaViewComponent { (props: StandaloneAgendaViewProps & { ref?: React.ForwardedRef; }): React.JSX.Element; propTypes?: any; }