import { PopoverPositionType } from '../../Popover/Props';
interface PositionInfo {
    top?: number;
    left?: number;
    right?: number;
    bottom?: number;
}
export declare const getPosition: (position: PopoverPositionType, el: HTMLElement, container?: HTMLElement | undefined) => Record<keyof PositionInfo, string>;
export {};
