/** * Intersection Observer API Polyfill for Testing */ export declare class MockIntersectionObserver { root: Element | null; rootMargin: string; thresholds: ReadonlyArray; constructor(_callback: IntersectionObserverCallback, _options?: IntersectionObserverInit); observe(): void; unobserve(): void; disconnect(): void; takeRecords(): IntersectionObserverEntry[]; } export declare function setupIntersectionObserver(globalScope?: any): typeof MockIntersectionObserver; //# sourceMappingURL=intersectionObserverPolyfill.d.ts.map