import { People } from './people'; import { Menu } from './menu'; export declare class Header { brandName: string; people: People; menu: Menu; homePath?: string; brandImage: string; hasLink: boolean; constructor(brandName: string, brandImage: string, homePath?: string, hasLink?: boolean); }