import * as React from "react"; interface IHeaderProps { handerChangeDate: (d: any, type: any, e: any) => void; date: Date; monthLongTexts: string[]; monthShortTexts: string[]; minDate: Date; maxDate: Date; subyearElement: any; submonthElement: any; subheadnavElement: any; } export default class Header extends React.Component { onChangeMonth: (month: any, e: any) => void; onChangeYear: (e: any) => void; buildValidDate: (date: any) => any; changeLastMonth: (e: any, inc: any) => void; addYear: (e: any) => void; subtractYear: (e: any) => void; addMonth: (e: any) => void; subtractMonth: (e: any) => void; render(): JSX.Element; } export {};