import * as React from 'react';
import { Models } from './DataTypes';
export interface PropsType {
    headerTitle?: string;
    locale?: Models.Locale;
    showClear?: boolean;
    onClear?: () => void;
    onComeToday?: () => void;
    onSelectMonth?: () => void;
    clearIcon?: React.ReactNode;
}
export default class Header extends React.PureComponent<PropsType, {}> {
    onComeToday: () => void;
    onSelectMonth: () => void;
    render(): JSX.Element;
}
