declare type inViewOptions = { once: boolean; root: null | HTMLElement; rootMargin: string; threshold: number; }; declare type ActionReturnType = { update: (options: inViewOptions) => void; destroy: () => void; }; export default function (node: HTMLElement, options?: inViewOptions): ActionReturnType; export {};