import { type ComputedRef, type Ref } from 'vue'; type Container = Ref | HTMLElement | null; type ContainerCollection = Container[] | Set; type ContainerInput = Container | ContainerCollection; export declare function useOutsideClick(containers: ContainerInput | (() => ContainerInput), cb: (event: MouseEvent | PointerEvent | FocusEvent | TouchEvent, target: HTMLElement) => void, enabled?: ComputedRef): void; export {};