import { Enum } from '../../enums'; export declare const InputType: Readonly<{ /** The event is a mouse event. Use the mi structure of the union. */ readonly INPUT_MOUSE: 0; /** The event is a keyboard event. Use the ki structure of the union. */ readonly INPUT_KEYBOARD: 1; /** The event is a hardware event. Use the hi structure of the union. */ readonly INPUT_HARDWARE: 2; }>; export type InputType = Enum; //# sourceMappingURL=input.d.ts.map