import type { PositionAnchor, SimplePosition } from "../positioning/types.js"; /** @internal */ export declare function getAnchor(position: SimplePosition): PositionAnchor; /** @internal */ export interface GetPositionOptions { container: HTMLElement; threshold: number; defaultPosition: SimplePosition; } /** @internal */ export declare function getPosition(options: GetPositionOptions): SimplePosition;