import React from 'react'; import { type TabIndex } from '../../types'; interface HeaderProps { monthLongTitle: string; year: number; nextMonthLabel?: string; nextYearLabel?: string; nextMonthHeading: string; nextYearHeading: string; previousMonthLabel?: string; previousYearLabel?: string; previousMonthHeading: string; previousYearHeading: string; handleClickNextMonth: (e: React.MouseEvent) => void; handleClickNextYear: (e: React.MouseEvent) => void; handleClickPrevMonth: (e: React.MouseEvent) => void; handleClickPrevYear: (e: React.MouseEvent) => void; headerId: string; tabIndex?: TabIndex; testId?: string; } declare const Header: React.NamedExoticComponent; export default Header;