import type { RefObject } from 'react'; type UseScrollManagementParams = { scrollRef: RefObject; isEndReached?: boolean; onLoadMore?: () => void; }; /** * Отслеживание скролла для динамического отображения футера */ export declare const useScrollManagement: ({ scrollRef, isEndReached, onLoadMore, }: UseScrollManagementParams) => { scrollParent: HTMLElement | null; hasVerticalScroll: boolean; recalculateVerticalScroll: () => void; handleEndReach: () => void; isEndReachedWithScroll: boolean | undefined; }; export {};