import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/item-indicator.d.ts /** * Decorative checked-state mark inside a menu item, hidden from assistive technology. It stays `hidden` unless * `checked` or `force-mount` is set; option radio groups set `checked` on the indicators in the items they generate. */ declare class MenuItemIndicatorElement extends UIElement { static readonly tagName = "media-menu-item-indicator"; static properties: { checked: { type: BooleanConstructor; }; forceMount: { type: BooleanConstructor; attribute: string; }; }; checked: boolean; forceMount: boolean; protected update(_changed: PropertyValues): void; } //#endregion export { MenuItemIndicatorElement }; //# sourceMappingURL=item-indicator.d.ts.map