import * as React from 'react'; import { SchedulerRenderableEventOccurrence } from '@mui/x-scheduler-internals/models'; import { ControlledValue } from "./utils.mjs"; interface GeneralTabProps { occurrence: SchedulerRenderableEventOccurrence; errors: Record; setErrors: (errors: Record) => void; controlled: ControlledValue; setControlled: React.Dispatch>; value: string; } export declare function GeneralTab(props: GeneralTabProps): import("react/jsx-runtime").JSX.Element; export {};