import type { RelativeAbsolutePosition } from '../../../types/pointer-events.js'; /** * Emulates a mouse position in the center of the container * @param width - * @param height - * @param top - * @param left - */ export declare const calculateCenterPositions: (width: number, height: number, top: number, left: number) => RelativeAbsolutePosition;