/** * This hook will perform an action based on the user's scroll position. * By default, your callback will fire when the user scrolls to the bottom of the container. * To fire your callback sooner, add an offset. */ type UseScrollToBottomProps = { container: HTMLElement | Document; callback: () => void; offset?: number; }; export declare function useScrollToBottomAction({ container, callback, offset, }: UseScrollToBottomProps): void; export {};