import { EventEmitter } from '../../stencil-public-runtime'; export declare class CbpAppHeader { private navItems; private currentItem; private drawerButton; private nav; private children; private navWidth; private searchForm; private searchControl; private searchField; private host; subnavDrawerId: string; search: boolean; searchMethod: string; searchAction: string; handleNavDrawerClose(e: any): void; searchInput: EventEmitter; handleSearchInput(e: any): void; searchSubmit: EventEmitter; handleSearchSubmit(e: any): void; handleKeyDown(ev: KeyboardEvent): void; handleClick(event: MouseEvent): void; openSearch(): Promise; closeSearch(): Promise; handleTabFocusOut({ key, shiftKey }: { key: any; shiftKey: any; }): void; handleShiftTabFocusOut({ key, shiftKey }: { key: any; shiftKey: any; }): void; updateCurrentItem(newValue: any): void; setCurrentNav(activatedNav: any): void; updateActiveItem(newValue: any): void; handleResize(width: any): void; doResponsive(): void; doFullSize(): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; }