import type { useNavScrollArgs, useNavScrollResult } from './types'; /** * This is the main hook: use it in a react function component to track * the state of the passed ids. The function accepts an initial configuration * of type `useNavScrollArgs` to customize the behaviour. */ export declare function useNavScroll(args?: useNavScrollArgs): useNavScrollResult;