import { Ref } from 'vue'; type MaybeRef = T | Ref; type MaybeArray = T | T[]; export declare const useFocusOutside: (elements: MaybeArray>, cb: (el: HTMLElement) => void, options?: { onlyKeyboard?: boolean; }) => void; export {};