import { EventEmitter } from '../../stencil-public-runtime'; import { CustomCloseEvent } from '../utils/menu-tabs/menu-tabs-utils'; export declare class MenuAbout { el: HTMLIxMenuAboutElement; /** * Active tab */ activeTabLabel?: string; /** * Content of the header */ label: string; /** * Aria label for close button */ ariaLabelCloseButton: string; /** @internal */ show: boolean; /** * Active tab changed * @since 3.0.0 */ tabChange: EventEmitter; /** * About and Legal closed */ close: EventEmitter; items: HTMLIxMenuAboutItemElement[]; updateTab(newLabel: string, oldLabel: string): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; }