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

17 lines
No EOL
526 B
TypeScript

import * as React from 'react';
import { TimeClockProps } from "./TimeClock.types.js";
type TimeClockComponent = ((props: TimeClockProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & {
propTypes?: any;
};
/**
* Demos:
*
* - [TimePicker](https://mui.com/x/react-date-pickers/time-picker/)
* - [TimeClock](https://mui.com/x/react-date-pickers/time-clock/)
*
* API:
*
* - [TimeClock API](https://mui.com/x/api/date-pickers/time-clock/)
*/
export declare const TimeClock: TimeClockComponent;
export {};