import * as React from 'react'; import { SxProps } from '@mui/system/styleFunctionSx'; import { Theme } from '@mui/material/styles'; export interface EventCalendarRootProps extends React.HTMLAttributes { /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } /** * Internal component that renders the EventCalendar UI. * Used by both EventCalendar and EventCalendarPremium. * Expects the store to be provided via context. */ export declare const EventCalendarRoot: React.ForwardRefExoticComponent>;