import type { MjolnirEventRaw } from '../types'; export interface InputOptions { enable: boolean; events?: string[]; } export default class Input { element: HTMLElement; options: Options; callback: (e: EventType) => void; constructor(element: HTMLElement, callback: (e: EventType) => void, options: Options); }