UNPKG

785 BTypeScriptView Raw
1import React from 'react';
2import { Localizer } from './Localization';
3interface Props {
4 label: string;
5 labelId?: string;
6 upDisabled: boolean;
7 prevDisabled: boolean;
8 todayDisabled: boolean;
9 nextDisabled: boolean;
10 onViewChange: () => void;
11 onMoveLeft: () => void;
12 onMoveToday: () => void;
13 onMoveRight: () => void;
14 navigatePrevIcon?: React.ReactNode;
15 navigateNextIcon?: React.ReactNode;
16 localizer: Localizer;
17 isRtl?: boolean;
18}
19declare function CalendarHeader({ localizer, label, labelId, onMoveRight, onMoveToday, onMoveLeft, onViewChange, prevDisabled, todayDisabled, upDisabled, nextDisabled, navigatePrevIcon, navigateNextIcon, }: Props): JSX.Element;
20export default CalendarHeader;
21//# sourceMappingURL=CalendarHeader.d.ts.map
\No newline at end of file