import { Point } from '../../types'; /** * Returns a DOM element center offset * @param el - The DOM element to get the center offset for * @returns The center point coordinates */ declare const centerOffset: (el: HTMLElement | null) => Point; export default centerOffset;