import * as React from 'react';
import { type SxProps, type Theme } from '@mui/material';
/**
* A pagination component that loads more results when the user scrolls to the bottom of the list.
*
* Used as the default pagination component in the component.
*
* @example
* import { InfiniteList, InfinitePagination, Datagrid, TextField } from 'react-admin';
*
* const PostList = () => (
* }>
*
*
*
*
*
* );
*/
export declare const InfinitePagination: ({ options, sx, }: InfinitePaginationProps) => React.JSX.Element | null;
export interface InfinitePaginationProps {
options?: IntersectionObserverInit;
sx?: SxProps;
}
//# sourceMappingURL=InfinitePagination.d.ts.map