import { PageProps } from '@wix/design-system'; import { ReactNode } from 'react'; import { CollectionPageState } from '@wix/bex-core'; interface PagePropsWithChildren extends PageProps { state?: CollectionPageState; } export interface InfiniteScrollPageProps extends PagePropsWithChildren { children: ReactNode; } export declare function InfiniteScrollPage({ children, ...props }: InfiniteScrollPageProps): JSX.Element; export {}; //# sourceMappingURL=InfiniteScrollPage.d.ts.map