export type UseObserveIntersectionProps = { floatingRef: React.RefObject; container: Element; selector: string; observerOptions?: MutationObserverInit; }; export type UseObserveIntersectionReturn = { intersection: boolean; }; export declare function useObserveIntersection({ floatingRef, container, selector, observerOptions, }: UseObserveIntersectionProps): UseObserveIntersectionReturn;