/** * @license * Copyright (c) 2021 - 2026 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import type { Constructor } from '@open-wc/dedupe-mixin'; /** * A mixin that manages keyboard handling. * The mixin subscribes to the keyboard events while an actual implementation * for the event handlers is left to the client (a component or another mixin). */ export declare function KeyboardMixin>(base: T): Constructor & T; export declare class KeyboardMixinClass { /** * A handler for the "Enter" key. By default, it does nothing. * Override the method to implement your own behavior. */ protected _onEnter(event: KeyboardEvent): void; /** * A handler for the "Escape" key. By default, it does nothing. * Override the method to implement your own behavior. */ protected _onEscape(event: KeyboardEvent): void; /** * A handler for the `keydown` event. By default, it calls * separate methods for handling "Enter" and "Escape" keys. * Override the method to implement your own behavior. */ protected _onKeyDown(event: KeyboardEvent): void; /** * A handler for the `keyup` event. By default, it does nothing. * Override the method to implement your own behavior. */ protected _onKeyUp(event: KeyboardEvent): void; }