import { Ref } from 'vue'; export interface Measurable { getBoundingClientRect: () => DOMRect; } interface PopperRootContext { anchor: Ref; onAnchorChange: (element: Measurable | HTMLElement | undefined) => void; } export declare const injectPopperRootContext: (fallback?: T | undefined) => T extends null ? PopperRootContext | null : PopperRootContext, providePopperRootContext: (contextValue: PopperRootContext) => PopperRootContext; declare const _default: __VLS_WithTemplateSlots>, {}, {}>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };