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