/**
 * Web Pagination Component
 */
import type { ElementType, MouseEvent, ReactNode } from 'react';
export type InfinityScrollerProps = {
    children?: ReactNode;
};
export default function InfinityScroller({ children, }: InfinityScrollerProps): any;
export declare function InfinityLoadButton({ element, pressedElement, icon, text, iconPosition, onClick, }: {
    element?: ElementType;
    pressedElement?: ReactNode;
    icon?: string;
    text?: string | null;
    iconPosition?: 'left' | 'right';
    onClick?: (e: MouseEvent) => void;
}): import("react/jsx-runtime").JSX.Element;
