import { type RefObject } from 'react'; interface KeyboardInteractionOutsideProps { /** Ref element to check the event target against */ ref: RefObject; /** Callback called when a keyboard event is triggered outside the reference element*/ onInteractOutside?: (e: KeyboardEvent) => void; /** Switch to skip all checks */ isDisabled?: boolean; } /** Determine a keyboard interaction outside of the given ref */ export declare function useKeyboardInteractionOutside(props: KeyboardInteractionOutsideProps): void; export {};