/// <reference types="react" />
declare type Props = {
    logoAltText: string;
    menuIconTitle: string;
    centerMenu?: JSX.Element;
    rightMenu?: JSX.Element;
};
declare function Header(props: Props): JSX.Element;
export default Header;
