import React from 'react'; import "jb-infinite-scroll"; import { JBInfiniteScrollWebComponent, StateChangeWaitingBehavior } from "jb-infinite-scroll"; import { EventProps } from './events-hook.js'; declare global { namespace JSX { interface IntrinsicElements { 'jb-infinite-scroll': JBInfiniteScrollType; } interface JBInfiniteScrollType extends React.DetailedHTMLProps, JBInfiniteScrollWebComponent> { "class"?: string; "type"?: string; } } } declare const JBInfiniteScroll: React.ForwardRefExoticComponent>; export type Props = EventProps & React.PropsWithChildren<{ stateChangeWaitingBehavior?: StateChangeWaitingBehavior; disableCaptureScroll?: boolean; isListEmpty?: boolean; isLoading?: boolean; isListEnded?: boolean; className?: string; }>; export { JBInfiniteScroll, StateChangeWaitingBehavior };