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

15 lines
No EOL
471 B
TypeScript

import * as React from 'react';
import { PickersDayProps } from "./PickersDay.types.js";
type PickersDayComponent = ((props: PickersDayProps & React.RefAttributes<HTMLButtonElement>) => React.JSX.Element) & {
propTypes?: any;
};
/**
* Demos:
*
* - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/)
* API:
*
* - [PickersDay API](https://mui.com/x/api/date-pickers/pickers-day/)
*/
export declare const PickersDay: PickersDayComponent;
export {};