/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { SubMenu } from '@material/web/menu/internal/submenu/sub-menu.js'; /** * @summary Menus display a list of choices on a temporary surface. * * @description * Menu items are the selectable choices within the menu. Menu items must * implement the `Menu` interface and also have the `ix-menu` * attribute. Additionally menu items are list items so they must also have the * `ix-list-item` attribute. * * Menu items can control a menu by selectively firing the `close-menu` and * `deselect-items` events. * * This menu item will open a sub-menu that is slotted in the `submenu` slot. * Additionally, the containing menu must either have `has-overflow` or * `positioning=fixed` set to `true` in order to display the containing menu * properly. * * @example * ```html *
* * * * * * * * * * * * * *
* ``` * * @final * @suppress {visibility} */ export declare class IxSubMenu extends SubMenu { static styles: import("lit").CSSResult; }