import React from 'react'; import { ImageProps } from '../image/image'; import { IconListProps } from '../icon-list/icon-list'; import { ToggleButtonProps } from '../toggle-button/toggle-button'; import { NavigationTabsProps } from '../navigation-tabs/navigation-tabs.types'; import { LinkProps } from '../links/link/link'; export interface HeaderProps { className?: string; children?: React.ReactNode; styles?: { root: {}; }; isNavigationInline?: boolean; hideLogo?: boolean; hideIconList?: boolean; hideToggleButton?: boolean; imageProps?: ImageProps & LinkProps; iconListProps?: IconListProps; toggleButtonProps?: ToggleButtonProps; newLineElementProps?: { styles: { root: {}; }; }; navigationTabsProps?: NavigationTabsProps; } declare const Header: React.FC; export default Header;