import React from 'react'; import type { ObservableIntersectionObserver } from './intersectionObserver'; export interface WithIntersectionProps { onIntersection: (id: string, entry: IntersectionObserverEntry) => void; io: ObservableIntersectionObserver; id: string; } export declare const WithIntersection: (props: WithIntersectionProps & React.HTMLProps) => React.JSX.Element; //# sourceMappingURL=WithIntersection.d.ts.map