UNPKG

@mui/x-date-pickers-pro

Version:

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

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