/** * True when focus is in a field where global shortcuts should not fire. * * Mirrors the same skip logic baked into Radix `useShortcut` so global * hotkey handlers (export ⌘⇧E, rename F2, etc.) don't steal keystrokes * that the user clearly intends for the input. Covers native form * fields and any element marked `contenteditable="true"` (richtext * editors, comment composers). */ declare function isEditableTarget(target: EventTarget | null): boolean; export { isEditableTarget };