UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

19 lines (18 loc) 829 B
import * as React from 'react'; import { DesktopDateTimePickerProps } from './DesktopDateTimePicker.types'; import { PickerValidDate } from '../models'; type DesktopDateTimePickerComponent = (<TDate extends PickerValidDate, TEnableAccessibleFieldDOMStructure extends boolean = false>(props: DesktopDateTimePickerProps<TDate, TEnableAccessibleFieldDOMStructure> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [DateTimePicker](https://mui.com/x/react-date-pickers/date-time-picker/) * - [Validation](https://mui.com/x/react-date-pickers/validation/) * * API: * * - [DesktopDateTimePicker API](https://mui.com/x/api/date-pickers/desktop-date-time-picker/) */ declare const DesktopDateTimePicker: DesktopDateTimePickerComponent; export { DesktopDateTimePicker };