@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
13 lines (12 loc) • 541 B
TypeScript
import * as React from 'react';
import { PickersLayoutProps } from '../PickersLayout';
import { PickerValidDate } from '../models';
import { DateOrTimeViewWithMeridiem } from '../internals';
/**
* @ignore - internal component.
*/
declare function DesktopDateTimePickerLayout<TValue, TDate extends PickerValidDate, TView extends DateOrTimeViewWithMeridiem>(props: PickersLayoutProps<TValue, TDate, TView>): React.JSX.Element;
declare namespace DesktopDateTimePickerLayout {
var propTypes: any;
}
export { DesktopDateTimePickerLayout };