import * as elementResizeDetectorMaker from 'element-resize-detector'; import { Size } from './types'; export declare function getSize(element: HTMLElement): Size; export declare function isHeightChanged(sizeA: Size | null, sizeB: Size | null): boolean; export declare function isWidthChanged(sizeA: Size | null, sizeB: Size | null): boolean; export declare function updateElementDataAttributes(element: HTMLElement, dataset: DOMStringMap): void; export declare const getResizeDetector: () => elementResizeDetectorMaker.Erd;