import { CSSProperties, ReactNode } from "react"; interface InViewContextProviderProps { contextName: string; 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; children: ReactNode; } export declare function InViewContextProvider({ contextName, className, style, root, rootMargin, threshold, triggerOnce, initialInView, fallbackInView, onChange, children, }: InViewContextProviderProps): import("react").JSX.Element; export {};