import type * as T from '../../../lib/common.types.js';
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
declare const init: StructInitType;
export declare const LPKEYBDINPUT: "KEYBDINPUT*";
export declare const KEYBDINPUT_Name = "KEYBDINPUT";
export declare const KEYBDINPUT_Init: typeof init;
/**
 * KEYBDINPUT structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-keybdinput
 */
export declare function KEYBDINPUT_Factory(): StructFactoryResult<KEYBDINPUT_Type>;
/**
 * KEYBDINPUT structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-keybdinput
 */
export interface KEYBDINPUT_Type {
    wVk: T.WORD;
    wScan: T.WORD;
    dwFlags: T.DWORD;
    time: T.DWORD;
    dwExtraInfo: T.ULONG_PTR;
}
export {};
//# sourceMappingURL=KEYBDINPUT.d.ts.map