import { IWidget } from './..'; export interface IHeaderOptions { breadcrumbItems?: any[]; breadcrumbs?: boolean; dense?: boolean; hideLogo?: boolean; hideTitle?: boolean; hideToolbar?: boolean; infoHeader?: IInfoHeaderOptions | boolean; logo?: string; showLoadingIcon?: boolean; showNotifications?: boolean; title?: string; titleWidget?: IWidget; } export declare class HeaderOptions implements IHeaderOptions { breadcrumbItems?: any[]; breadcrumbs?: boolean; dense?: boolean; elevation?: number; flat?: boolean; floating?: boolean; hideLogo?: boolean; hideMenuToggle?: boolean; hideTitle?: boolean; hideToolbar?: boolean; infoHeader?: IInfoHeaderOptions | boolean; logo?: string; showLoadingIcon?: boolean; showNotifications?: boolean; tabsCentered?: boolean; tabsGrow?: boolean; tabsHideSlider?: boolean; tabsRight?: boolean; title?: string; titleWidget?: IWidget; constructor(options?: HeaderOptions); } export interface IInfoHeaderOptions { }