import type { EventArgs } from '@ephox/sugar'; export type KeyMatcher = (evt: EventArgs) => boolean; declare const inSet: (keys: ReadonlyArray) => KeyMatcher; declare const and: (preds: KeyMatcher[]) => KeyMatcher; declare const is: (key: number) => KeyMatcher; declare const isShift: (event: EventArgs) => boolean; declare const isControl: (event: EventArgs) => boolean; declare const isNotControl: (event: EventArgs) => boolean; declare const isNotShift: (event: EventArgs) => boolean; export { inSet, and, is, isShift, isNotShift, isControl, isNotControl }; //# sourceMappingURL=KeyMatch.d.ts.map