export declare module ScrollPagingUtils {
    const scrollAttributeName = "omnia_scroll_paging_attribute";
    function isScrollable(ele: any): boolean;
    function registerScrollPagingWithDefaultScrollWrapper(elem: HTMLElement, nextPage: () => Promise<boolean>, onUnregister?: () => void): void;
    function removeScrollPaging(elem: HTMLElement): void;
    function getScrollableParent(ele: any): any;
}
