import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/group.d.ts /** * Groups related menu items; the element itself takes `role="group"`. A `` child names the * group unless it already has an `aria-label` or `aria-labelledby`. */ declare class MenuGroupElement extends UIElement { #private; static readonly tagName = "media-menu-group"; protected update(_changed: PropertyValues): void; } //#endregion export { MenuGroupElement }; //# sourceMappingURL=group.d.ts.map