/**
 * @returns information about which dividers to display based on whether an observed content is scrolled to the top or bottom
 */
export declare const useScrollDivider: () => {
    ref: import("react").RefObject<HTMLInputElement>;
    hasTopDivider: boolean;
    hasBottomDivider: boolean;
    isScrolling: boolean;
    isScrollable: boolean;
};
