export interface UseIntersectionProps { ref: React.MutableRefObject; defaultValue?: boolean; callback?: (entry: IntersectionObserverEntry, isVisible: boolean) => void; filter?: (entry: IntersectionObserverEntry) => boolean; dependencies?: React.DependencyList[] | null; options?: IntersectionObserverInit; } export declare const useIntersection: ({ ref, defaultValue, callback, filter, options, dependencies, }: UseIntersectionProps) => boolean; //# sourceMappingURL=intersection.d.ts.map