/** * Provides the scroll state of the referenced element. */ export declare const useScroll: (content: HTMLElement | null | undefined, horizontal?: boolean) => ReturnType; /** * Calculates the scroll state of the referenced element. */ export declare function calcScrollState(container: HTMLElement | null | undefined, horizontal: boolean): { start: number; end: number; max: number; scrollable: boolean; };