UNPKG

@mui/x-date-pickers-pro

Version:

The Pro plan edition of the MUI X Date and Time Picker components.

17 lines 794 B
import * as React from 'react'; import { DesktopDateTimeRangePickerProps } from "./DesktopDateTimeRangePicker.types.js"; type DesktopDateRangePickerComponent = (<TEnableAccessibleFieldDOMStructure extends boolean = true>(props: DesktopDateTimeRangePickerProps<TEnableAccessibleFieldDOMStructure> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [DateTimeRangePicker](https://mui.com/x/react-date-pickers/date-time-range-picker/) * - [Validation](https://mui.com/x/react-date-pickers/validation/) * * API: * * - [DesktopDateTimeRangePicker API](https://mui.com/x/api/date-pickers/desktop-date-time-range-picker/) */ declare const DesktopDateTimeRangePicker: DesktopDateRangePickerComponent; export { DesktopDateTimeRangePicker };