import { Ref } from 'vue'; import { AttachInfo } from '../declaration'; export declare function usePositioning(anchor: Ref, attachment: Ref): { isVisible: Ref; computedPlacement: Ref<"top" | "bottom" | "left" | "right" | null, "top" | "bottom" | "left" | "right" | null>; appear: (attachInfo?: AttachInfo) => void; disappear: () => void; };