export interface IMeasurable {
    offsetWidth: number;
    offsetHeight: number;
    getBoundingClientRect(): DOMRect;
}
