import type { MaybeRef } from './_shared'; /** * Listen for clicks outside a target element. * Calls the handler when a click occurs outside the target element. * * @param target - Element to detect clicks outside of * @param handler - Callback when click outside is detected * @param options - Configuration options * @returns Cleanup function to remove the listener */ export declare function onClickOutside(target: MaybeRef, handler: (event: MouseEvent) => void, options?: OnClickOutsideOptions): () => void; export declare interface OnClickOutsideOptions { ignore?: MaybeRef[] }