import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/separator.d.ts /** Visual divider between groups of menu items; the element itself takes `role="separator"`. */ declare class MenuSeparatorElement extends UIElement { static readonly tagName = "media-menu-separator"; protected update(_changed: PropertyValues): void; } //#endregion export { MenuSeparatorElement }; //# sourceMappingURL=separator.d.ts.map