import type { Ref } from 'vue'; /** * Listens for when the escape key is down */ declare function useEscapeKeydown(onEscapeKeydownProp?: (event: KeyboardEvent) => void, ownerDocument?: Ref): void; export { useEscapeKeydown };