import type { ComputePosition } from './types';
|
/**
|
* Computes the `x` and `y` coordinates that will place the floating element
|
* next to a reference element when it is given a certain positioning strategy.
|
*
|
* This export does not have any `platform` interface logic. You will need to
|
* write one for the platform you are using Floating UI with.
|
*/
|
export declare const computePosition: ComputePosition;
|