index.d.ts 202 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 /** * Listens for when the escape key is down */ declare function useEscapeKeydown(onEscapeKeyDownProp?: (event: KeyboardEvent) => void, ownerDocument?: Document): void; export { useEscapeKeydown };