/**
 * Hook which observes element's scroll position and returns text value based on the
 * position of the scrollbar (`top`, `bottom`, `between` and `null` if no scrollbar is available)
 */
export declare const useVerticalScrollPosition: (scrollElement: HTMLElement | null, threshold?: number) => "bottom" | "top" | "between" | null;
export declare const useHorizontalScrollPosition: (scrollElement: HTMLElement | null, threshold?: number) => "end" | "start" | "between" | null;
