1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/DesktopDateTimePicker/DesktopDateTimePickerLayout.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

11 lines
No EOL
522 B
TypeScript

import * as React from 'react';
import { PickersLayoutProps } from "../PickersLayout/index.js";
import { PickerValidValue } from "../internals/models/index.js";
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 };