@mui/x-date-pickers
Version:
The community edition of the MUI X Date and Time Picker components.
11 lines • 524 B
text/typescript
import * as React from 'react';
import { PickersLayoutProps } from "../PickersLayout/index.mjs";
import { PickerValidValue } from "../internals/models/index.mjs";
type DesktopDateTimePickerLayoutComponent = (<TValue extends PickerValidValue>(props: PickersLayoutProps<TValue> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & {
propTypes?: any;
};
/**
* @ignore - internal component.
*/
declare const DesktopDateTimePickerLayout: DesktopDateTimePickerLayoutComponent;
export { DesktopDateTimePickerLayout };