UNPKG

react-widgets-up

Version:

An à la carte set of polished, extensible, and accessible inputs built for React

14 lines 542 B
import * as React from 'react'; import { CalendarViewProps } from './CalendarView'; import { Localizer } from './Localization'; interface CenturyProps extends CalendarViewProps { disabled?: boolean; onChange: (nextDate: Date) => void; value?: Date | null; min: Date; max: Date; localizer: Localizer; } declare function CenturyView({ focusedItem, disabled, onChange, value, localizer, min, max, ...props }: CenturyProps): React.JSX.Element; export default CenturyView; //# sourceMappingURL=Century.d.ts.map