import { HTMLAttributes, FC, ReactNode } from 'react'; import { BaseProps } from '../../Base'; export interface InfiniteListProps extends Omit, 'css'>, BaseProps { onLoad: () => void; isLoading: boolean; items: ReactNode[]; } export declare const InfiniteList: FC; export default InfiniteList;