16 lines
No EOL
449 B
TypeScript
16 lines
No EOL
449 B
TypeScript
import * as React from 'react';
|
|
import { YearCalendarProps } from "./YearCalendar.types.js";
|
|
type YearCalendarComponent = ((props: YearCalendarProps) => React.JSX.Element) & {
|
|
propTypes?: any;
|
|
};
|
|
/**
|
|
* Demos:
|
|
*
|
|
* - [DateCalendar](https://mui.com/x/react-date-pickers/date-calendar/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [YearCalendar API](https://mui.com/x/api/date-pickers/year-calendar/)
|
|
*/
|
|
export declare const YearCalendar: YearCalendarComponent;
|
|
export {}; |