import { RefObject } from 'react'; export interface UseIntersectionOnceOptions extends Omit { root?: RefObject | Element | null; } export declare const useIntersectionOnce: (targetRef: RefObject, options?: UseIntersectionOnceOptions) => boolean;