//#region src/main/private/GestureRecognizer/plugins/KeyboardActivationTracker.d.ts /** * Enter/Space activation state for a single gesture. A held key activates once: OS key * repeat is swallowed until the matching keyup (WCAG 2.1.1 Keyboard). */ declare class KeyboardActivationTracker { private isActive; private static isActivationKey; begin(event: KeyboardEvent): boolean; end(event: KeyboardEvent): boolean; reset(): void; } //#endregion export { KeyboardActivationTracker };