export interface Rect extends Omit { x?: number; y?: number; } export declare const defaultRect: Rect; export declare function getCrossbrowserBoundingRect(rect: Rect | DOMRect): Rect; export declare function getBoundingRect(node: HTMLElement): Rect;