import * as React from 'react'; import { SchedulerRenderableEventOccurrence } from '@mui/x-scheduler-internals/models'; type ReadonlyContentProps = { occurrence: SchedulerRenderableEventOccurrence; onClose: () => void; dragHandlerRef: React.RefObject; }; export default function ReadonlyContent(props: ReadonlyContentProps): import("react/jsx-runtime").JSX.Element; export {};