import { RefObject } from "react"; import type { JBInfiniteScrollEventType, JBInfiniteScrollWebComponent } from 'jb-infinite-scroll'; export type EventProps = { /** * when component loaded, in most cases component is already loaded before react mount so you dont need this but if you load web-component dynamically with lazy load it will be called after react mount */ onLoad?: (e: JBInfiniteScrollEventType) => void; /** * when all property set and ready to use, in most cases component is already loaded before react mount so you dont need this but if you load web-component dynamically with lazy load it will be called after react mount */ onInit?: (e: JBInfiniteScrollEventType) => void; /** * on user scroll to the end */ onScrollEnd?: (e: JBInfiniteScrollEventType) => void; onScroll?: (e: JBInfiniteScrollEventType) => void; }; export declare function useEvents(element: RefObject, props: EventProps): void;