export declare function getScrollPosition(scrollingContainer: Element): {
    isTop: boolean;
    isLeft: boolean;
    isBottom: boolean;
    isRight: boolean;
    maxScroll: {
        x: number;
        y: number;
    };
    minScroll: {
        x: number;
        y: number;
    };
};
