export declare const enum ElementSides {
    Top = 0,
    Bottom = 1,
    All = 2
}
export declare function isInViewport(htmlElement: HTMLElement, sidesToCheck?: ElementSides): boolean;
