import { CSSProperties, ReactNode } from "react"; interface InViewProps { className?: string; style?: CSSProperties; root?: Element | Document | null; rootMargin?: string; threshold?: number | number[]; triggerOnce?: boolean; initialInView?: boolean; fallbackInView?: boolean; onChange?: (inView: boolean, entry: IntersectionObserverEntry) => void; previewFallback?: boolean; fallback: ReactNode; children: ReactNode; } export declare function InView({ className, style, root, rootMargin, threshold, triggerOnce, initialInView, fallbackInView, onChange, previewFallback, fallback, children, }: InViewProps): import("react").JSX.Element; export {};