@mui/x-date-pickers-pro
Version:
The Pro plan edition of the MUI X Date and Time Picker components.
17 lines • 691 B
text/typescript
import * as React from 'react';
import { MobileDateTimeRangePickerProps } from "./MobileDateTimeRangePicker.types.mjs";
type MobileDateRangePickerComponent = ((props: MobileDateTimeRangePickerProps & 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:
*
* - [MobileDateTimeRangePicker API](https://mui.com/x/api/date-pickers/mobile-date-time-range-picker/)
*/
declare const MobileDateTimeRangePicker: MobileDateRangePickerComponent;
export { MobileDateTimeRangePicker };