File size: 333 Bytes
bc20498
 
 
 
 
 
1
2
3
4
5
6
7
import type { FloatingConfig } from './types.js';
import { noop } from '../../helpers/index.js';
import type { VirtualElement } from '@floating-ui/core';
export declare function useFloating(reference: HTMLElement | VirtualElement | undefined, floating: HTMLElement | undefined, opts?: FloatingConfig): {
    destroy: typeof noop;
};