import { UIElement } from "../ui-element.js"; import { HotkeyProps } from "@videojs/core"; import { PropertyDeclarationMap, PropertyValues } from "@videojs/element"; //#region src/ui/hotkey/element.d.ts declare class HotkeyElement extends UIElement { #private; static readonly tagName = "media-hotkey"; static properties: PropertyDeclarationMap; keys: HotkeyProps['keys']; action: HotkeyProps['action'] | ''; value: HotkeyProps['value']; disabled: NonNullable; target: NonNullable; connectedCallback(): void; disconnectedCallback(): void; protected update(changed: PropertyValues): void; } //#endregion export { HotkeyElement }; //# sourceMappingURL=element.d.ts.map