import type { Event } from "../Event.js"; import { EventRegistry } from "../EventRegistry.js"; /** * Arguments for the "input.keyboard-shortcut-pressed" event. */ export interface ConsoleKeyInfoObj { } export declare class InputEvents extends EventRegistry { protected readonly _prefix = "input"; /** * Raised when the user shakes the device. Mobile only. * * @mobileOnly */ get shake(): Event; /** * Raised when the user presses a keyboard shortcut. Mobile only. * * @mobileOnly */ get keyboardShortcutPressed(): Event; }