/** * Popup positioning helpers */ export interface PopupSize { width: number; height: number; } export interface PopupPosition { left: number; top: number; } export declare function calculatePopupPosition(clickX: number, clickY: number, popupSize?: PopupSize, margin?: number): PopupPosition; //# sourceMappingURL=popup-position.d.ts.map