declare const isEnter: (event: KeyboardEvent) => boolean; declare const isEnterCtrl: (event: KeyboardEvent) => boolean; declare const isEnterAlt: (event: KeyboardEvent) => boolean; declare const isEnterShift: (event: KeyboardEvent) => boolean; declare const isCtrl: (event: KeyboardEvent) => boolean; declare const isSpace: (event: KeyboardEvent) => boolean; declare const isSpaceShift: (event: KeyboardEvent) => boolean; declare const isSpaceCtrl: (event: KeyboardEvent) => boolean; declare const isLeft: (event: KeyboardEvent) => boolean; declare const isRight: (event: KeyboardEvent) => boolean; declare const isUp: (event: KeyboardEvent) => boolean; declare const isDown: (event: KeyboardEvent) => boolean; declare const isLeftCtrl: (event: KeyboardEvent) => boolean; declare const isRightCtrl: (event: KeyboardEvent) => boolean; declare const isUpCtrl: (event: KeyboardEvent) => boolean; declare const isDownCtrl: (event: KeyboardEvent) => boolean; declare const isUpShift: (event: KeyboardEvent) => boolean; declare const isDownShift: (event: KeyboardEvent) => boolean; declare const isUpAlt: (event: KeyboardEvent) => boolean; declare const isDownAlt: (event: KeyboardEvent) => boolean; declare const isLeftShift: (event: KeyboardEvent) => boolean; declare const isRightShift: (event: KeyboardEvent) => boolean; declare const isLeftShiftCtrl: (event: KeyboardEvent) => boolean; declare const isRightShiftCtrl: (event: KeyboardEvent) => boolean; declare const isUpShiftCtrl: (event: KeyboardEvent) => boolean; declare const isDownShiftCtrl: (event: KeyboardEvent) => boolean; declare const isHome: (event: KeyboardEvent) => boolean; declare const isEnd: (event: KeyboardEvent) => boolean; declare const isHomeCtrl: (event: KeyboardEvent) => boolean; declare const isHomeShift: (event: KeyboardEvent) => boolean; declare const isEndCtrl: (event: KeyboardEvent) => boolean; declare const isEndShift: (event: KeyboardEvent) => boolean; declare const isEscape: (event: KeyboardEvent) => boolean; declare const isTabNext: (event: KeyboardEvent) => boolean; declare const isTabPrevious: (event: KeyboardEvent) => boolean; declare const isBackSpace: (event: KeyboardEvent) => boolean; declare const isDelete: (event: KeyboardEvent) => boolean; declare const isDeleteShift: (event: KeyboardEvent) => boolean; declare const isInsertShift: (event: KeyboardEvent) => boolean; declare const isInsertCtrl: (event: KeyboardEvent) => boolean; declare const isPageUp: (event: KeyboardEvent) => boolean; declare const isPageDown: (event: KeyboardEvent) => boolean; declare const isPageUpShift: (event: KeyboardEvent) => boolean; declare const isPageUpAlt: (event: KeyboardEvent) => boolean; declare const isPageDownShift: (event: KeyboardEvent) => boolean; declare const isPageDownAlt: (event: KeyboardEvent) => boolean; declare const isPageUpShiftCtrl: (event: KeyboardEvent) => boolean; declare const isPageDownShiftCtrl: (event: KeyboardEvent) => boolean; declare const isPlus: (event: KeyboardEvent) => boolean; declare const isMinus: (event: KeyboardEvent) => boolean; declare const isShow: (event: KeyboardEvent) => boolean; declare const isF2: (event: KeyboardEvent) => boolean; declare const isF4: (event: KeyboardEvent) => boolean; declare const isF4Shift: (event: KeyboardEvent) => boolean; declare const isF10Shift: (event: KeyboardEvent) => boolean; declare const isF6Next: (event: KeyboardEvent) => boolean; declare const isF6Previous: (event: KeyboardEvent) => boolean; declare const isF7: (event: KeyboardEvent) => boolean; declare const isCtrlAltF8: (event: KeyboardEvent) => boolean; declare const isShift: (event: KeyboardEvent) => boolean; declare const isCtrlA: (event: KeyboardEvent) => boolean; declare const isCtrlV: (event: KeyboardEvent) => boolean; declare const isKeyA: (event: KeyboardEvent) => boolean; declare const isKeyP: (event: KeyboardEvent) => boolean; declare const isNumber: (event: KeyboardEvent) => boolean; declare const isColon: (event: KeyboardEvent) => boolean; export { isEnter, isEnterCtrl, isEnterAlt, isEnterShift, isCtrl, isSpace, isSpaceShift, isSpaceCtrl, isLeft, isRight, isUp, isDown, isLeftCtrl, isRightCtrl, isUpCtrl, isDownCtrl, isUpShift, isDownShift, isUpAlt, isDownAlt, isLeftShift, isRightShift, isLeftShiftCtrl, isRightShiftCtrl, isUpShiftCtrl, isDownShiftCtrl, isHome, isEnd, isPlus, isMinus, isHomeCtrl, isEndCtrl, isHomeShift, isEndShift, isEscape, isTabNext, isTabPrevious, isBackSpace, isDelete, isShow, isF2, isF4, isF4Shift, isF10Shift, isF6Previous, isF6Next, isF7, isPageUp, isPageDown, isPageUpShift, isPageUpAlt, isPageDownShift, isPageDownAlt, isPageUpShiftCtrl, isPageDownShiftCtrl, isShift, isCtrlA, isCtrlV, isKeyA, isKeyP, isDeleteShift, isInsertShift, isInsertCtrl, isNumber, isColon, isCtrlAltF8, };