import { GeneralFunction } from '@asherng/common-types'; import { ObserverInstanceCallback } from './types.js'; import 'react'; declare const defaultFallbackInView: (inView: boolean | undefined) => void; declare const optionsToId: (options: IntersectionObserverInit) => string; declare const observe: (element: E, callback: ObserverInstanceCallback, options?: IntersectionObserverInit, fallbackInView?: boolean | undefined) => GeneralFunction; export { defaultFallbackInView, observe, optionsToId };