import React from 'react'; import "./IntersectionContainer.css"; interface IIntersectionContainerProps { children?: React.ReactNode; onIntersect?: () => void; options?: IntersectionObserverInit; className?: string; } export declare const IntersectionContainer: ({ children, onIntersect, options, className, }: IIntersectionContainerProps) => string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; export {};