@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
19 lines (18 loc) • 783 B
TypeScript
import * as React from 'react';
import { DesktopDatePickerProps } from './DesktopDatePicker.types';
import { PickerValidDate } from '../models';
type DesktopDatePickerComponent = (<TDate extends PickerValidDate, TEnableAccessibleFieldDOMStructure extends boolean = false>(props: DesktopDatePickerProps<TDate, TEnableAccessibleFieldDOMStructure> & 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 };