import { default as React } from 'react'; interface DeferredViewProps extends React.HTMLAttributes { children: React.ReactNode; placeholder?: React.ReactNode; rootMargin?: string; threshold?: number; keepMounted?: boolean; className?: string; style?: React.CSSProperties; minHeight?: string | number; } declare function DeferredView({ children, placeholder, rootMargin, threshold, keepMounted, className, style, minHeight, ...rest }: DeferredViewProps): React.JSX.Element; export { DeferredView }; export type { DeferredViewProps };