import type { PropsWithChildren, ReactElement } from 'react'; declare type YearProps = PropsWithChildren<{ value: Date; isCurrent: boolean; isSelected: boolean; onChange: (nextValue: Date | null) => void; }>; declare function Year({ value, isCurrent, isSelected, onChange, children, }: YearProps): ReactElement; declare namespace Year { var defaultProps: { children: undefined; }; } declare const _default: import("react").MemoExoticComponent; export default _default;