import type { PositionOption } from '../core/types'; export interface PositionResult { top: number; left: number; placement: 'bottom' | 'top' | 'left' | 'right'; } export declare function computePosition(anchor: HTMLElement, dropdown: HTMLElement, position: PositionOption, container?: HTMLElement): PositionResult;