import React from 'react'; import { ImageListProps } from '../image-list/image-list'; import { IconListProps } from '../icon-list/icon-list'; import { ToggleButtonProps } from '../toggle-button/toggle-button'; import { NavigationTabsProps } from '../navigation-tabs/navigation-tabs.types'; import { SkipContentProps } from './skip-content'; import { HamburgerMenuProps } from '../hamburger-menu/hamburger-menu.types'; export interface HeaderWithHamburgerProps { styles?: { root: {}; }; className?: string; hideIconList?: boolean; hideToggleButton?: boolean; minwidth?: string; mainHeaderStyles?: {}; hamburgerMenuProps?: HamburgerMenuProps; logosProps?: ImageListProps; iconListProps?: IconListProps; toggleButtonProps?: ToggleButtonProps; newLineElementProps?: { styles?: { root: {}; }; }; navigationTabsProps?: NavigationTabsProps; skipContentProps?: SkipContentProps; } declare const HeaderWithHamburger: React.FC; export default HeaderWithHamburger;