import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/radio-item.d.ts /** * Menu item that selects its `value` in the enclosing `` and closes the menu. The element * itself takes `role="menuitemradio"`, checked while its value matches the group's. */ declare class MenuRadioItemElement extends UIElement { #private; static readonly tagName = "media-menu-radio-item"; static properties: { value: { type: StringConstructor; }; disabled: { type: BooleanConstructor; }; }; value: string; disabled: boolean; connectedCallback(): void; disconnectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { MenuRadioItemElement }; //# sourceMappingURL=radio-item.d.ts.map