import React from 'react'; interface HeaderProps { months: Date[]; currentMonth: number; changeMonth: Function; } declare function Header(props: HeaderProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;