import { EventEmitter } from '../../stencil-public-runtime'; import { CustomCloseEvent } from '../utils/menu-tabs/menu-tabs-utils'; export declare class MenuSettings { el: HTMLIxMenuSettingsElement; /** * Active tab */ activeTabLabel?: string; /** * Label of first tab */ label: string; /** * Aria label for close button */ ariaLabelCloseButton: string; /** @internal */ show: boolean; /** * Active tab changed * @since 3.0.0 */ tabChange: EventEmitter; /** * Popover closed */ close: EventEmitter; items: HTMLIxMenuSettingsItemElement[]; updateTab(newLabel: string, oldLabel: string): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; }