import React from 'react';
import type { IntersectionObserverProps } from 'react-intersection-observer';
declare type InViewSuspenseProps = Pick<IntersectionObserverProps, 'delay'> & {
    fallback?: React.ReactNode;
    children?: React.ReactNode;
};
declare const InViewSuspense: React.FC<InViewSuspenseProps>;
export default InViewSuspense;
