import type { Refs, visibleElements } from '../Carousel.types'; import { observerOptions } from '../Settings'; import ItemsMap from '../ItemsMap'; interface IntersectionProps { items: ItemsMap; itemsChanged: string; options: typeof observerOptions; refs: Refs; } export declare const useIntersectionObserver: ({ items, itemsChanged, refs, options, }: IntersectionProps) => { visibleElementsWithSeparators: visibleElements; }; export {};