import React from 'react'; interface Props { isFetching: boolean; hasMoreItems?: boolean; fetchData: () => void; children: React.ReactNode; height?: number | string; } declare const InfiniteLoader: ({ isFetching, fetchData, children, height, hasMoreItems }: Props) => import("react/jsx-runtime.js").JSX.Element; declare const InfiniteLoaderWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent; export { InfiniteLoader, InfiniteLoaderWithSchema };