export default class DomHandler { static innerWidth(el: any): any; static width(el: any): any; static isExist(element: any): any; static removeInlineStyle(styleElement: any): any; static getWindowScrollTop(): number; static getWindowScrollLeft(): number; static getOuterWidth(el: any, margin: any): any; static getOuterHeight(el: any, margin: any): any; static getClientHeight(el: any, margin: any): any; static getViewport(): { width: number; height: number; }; static getOffset(el: any): { top: any; left: any; }; static index(element: any): number; static addMultipleClasses(element: any, className: any): void; static addClass(element: any, className: any): void; static removeClass(element: any, className: any): void; static hasClass(element: any, className: any): any; static find(element: any, selector: any): any[]; static findSingle(element: any, selector: any): any; static getHeight(el: any): any; static getWidth(el: any): any; static alignOverlay(overlay: any, target: any, appendTo: any): void; static absolutePosition(element: any, target: any): void; static relativePosition(element: any, target: any): void; static flipfitCollision(element: any, target: any, my: string | undefined, at: string | undefined, callback: any): void; static findCollisionPosition(position: any): { axis: string; my: string; at: string; } | undefined; static getParents(element: any, parents?: any[]): any; static getScrollableParents(element: any): any[]; static getHiddenElementOuterHeight(element: any): any; static getHiddenElementOuterWidth(element: any): any; static getHiddenElementDimensions(element: any): { width: any; height: any; }; static fadeIn(element: any, duration: any): void; static fadeOut(element: any, ms: any): void; static getUserAgent(): string; static isIOS(): false; static isAndroid(): boolean; static isFunction(obj: any): boolean; static appendChild(element: any, target: any): void; static removeChild(element: any, target: any): void; static isElement(obj: any): boolean; static scrollInView(container: any, item: any): void; static clearSelection(): void; static calculateScrollbarWidth(el: any): number; static getBrowser(): {}; static resolveUserAgent(): { browser: string; version: string; }; static isVisible(element: any): boolean; static getFocusableElements(element: any): any[]; static getFirstFocusableElement(element: any): any; static getLastFocusableElement(element: any): any; }