import { ModifierKey } from "./ModifierKeys"; /** * Determines whether the specified modifier keys are allowed. * @param {KeyboardEvent} e The `KeyboardEvent` to test. * @param {ModifierKey[]} modifiers The allowed modifier keys. * @returns {boolean} A value indicating whether `modifiers` are allowed. */ export declare function isModifierAllowed(e: KeyboardEvent, ...modifiers: ModifierKey[]): boolean; //# sourceMappingURL=isModifierAllowed.d.ts.map