import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/menu/checkbox-item.d.ts /** * Menu item that toggles `checked` when activated and leaves the menu open. The element itself takes * `role="menuitemcheckbox"`. * * @fires checked-change - Fired when the checked state changes. */ declare class MenuCheckboxItemElement extends UIElement { #private; static readonly tagName = "media-menu-checkbox-item"; static properties: { checked: { type: BooleanConstructor; }; disabled: { type: BooleanConstructor; }; }; checked: boolean; disabled: boolean; connectedCallback(): void; disconnectedCallback(): void; protected update(_changed: PropertyValues): void; } //#endregion export { MenuCheckboxItemElement }; //# sourceMappingURL=checkbox-item.d.ts.map