export declare const getDiffRect: (node: HTMLElement, parentNode: HTMLElement) => {
    left: number;
    top: number;
    right: number;
    bottom: number;
};
export declare const updateScrollOffset: (parentNode: HTMLElement, direction: 'horizontal' | 'vertical') => void;
