export declare function offset(node: HTMLElement): {
top: number;
left: number;
height: number;
width: number;
};
export declare function offsetParent(node: HTMLElement): HTMLElement;
/**
* Returns the relative position of a given element.
*
* @param node the element
* @param offsetParent the offset parent
*/
export declare function position(node: HTMLElement, offsetParent?: HTMLElement): any;
export declare const getOffsetParent: typeof offsetParent;
export declare const getOffset: typeof offset;
export declare const getPosition: typeof position;