UNPKG

@mui/x-date-pickers

Version:

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

17 lines 605 B
import * as React from 'react'; import { DesktopDatePickerProps } from "./DesktopDatePicker.types.mjs"; type DesktopDatePickerComponent = ((props: DesktopDatePickerProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [DatePicker](https://mui.com/x/react-date-pickers/date-picker/) * - [Validation](https://mui.com/x/react-date-pickers/validation/) * * API: * * - [DesktopDatePicker API](https://mui.com/x/api/date-pickers/desktop-date-picker/) */ declare const DesktopDatePicker: DesktopDatePickerComponent; export { DesktopDatePicker };