import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/item.d.ts /** * Menu action; the element itself takes `role="menuitem"`. Activation fires a cancelable `select` event and then closes * the menu, unless `commandfor` names a nested `` page to open instead. */ declare class MenuItemElement extends UIElement { #private; static readonly tagName = "media-menu-item"; static properties: { disabled: { type: BooleanConstructor; }; commandfor: { type: StringConstructor; }; }; disabled: boolean; /** ID of a nested `` page to open when activated. */ commandfor: string | undefined; connectedCallback(): void; disconnectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { MenuItemElement }; //# sourceMappingURL=item.d.ts.map