export declare class ElementHelper {
    static focusElement(element: Element): void;
    static visibility(node: Element): boolean;
    static getNextElementPreorder(element: Element): Element;
    static getNextElementPostorder(element: Element): Element;
    static hasHorizontalScroller(element: HTMLElement): boolean;
    static hasVerticalScroller(element: HTMLElement): boolean;
}
