import { FlagsEnum } from '../../enums'; export declare const KeyEventFlags: Readonly<{ /** If specified, the wScan scan code consists of a sequence of two bytes, where the first byte has a value of 0xE0. See Extended-Key Flag for more info. */ readonly KEYEVENTF_EXTENDEDKEY: 1; /** If specified, the key is being released. If not specified, the key is being pressed. */ readonly KEYEVENTF_KEYUP: 2; /** If specified, wScan identifies the key and wVk is ignored. */ readonly KEYEVENTF_SCANCODE: 8; /** If specified, the system synthesizes a VK_PACKET keystroke. The wVk parameter must be zero. This flag can only be combined with the KEYEVENTF_KEYUP flag. For more information, see the Remarks section. */ readonly KEYEVENTF_UNICODE: 4; }>; export type KeyEventFlags = FlagsEnum; //# sourceMappingURL=keyeventf.d.ts.map