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