import { Keys } from './valid-keys'; type KeysInput = (keyof typeof Keys)[]; interface KeyPressItem { key: KeysInput; event: (event: KeyboardEvent) => void; preventDefault?: boolean; } declare function useKeyPress({ keyPressItems, tagsToIgnore, triggerOnContentEditable, }: { keyPressItems: KeyPressItem[]; tagsToIgnore?: string[]; triggerOnContentEditable?: boolean; }): void; export { useKeyPress, type KeyPressItem, type KeysInput }; //# sourceMappingURL=use-key-press.d.ts.map