import React, { ReactNode } from 'react';
import { RouteComponentProps } from 'react-router-dom';
export declare type HeaderProps = {
    title?: string;
    transparent?: boolean;
    withTextLogo?: boolean;
    menu?: ReactNode;
    toolset?: ReactNode;
    centered?: boolean;
};
export declare const Header: React.ComponentClass<Pick<HeaderProps & RouteComponentProps<{}, import("react-router").StaticContext, any>, "menu" | "title" | "toolset" | "transparent" | "withTextLogo" | "centered">, any> & import("react-router").WithRouterStatics<({ location, history, title, toolset, menu, transparent, withTextLogo, centered, }: HeaderProps & RouteComponentProps<{}, import("react-router").StaticContext, any>) => JSX.Element>;
