import { MutableRefObject } from "react"; import { NodeType, OptionsType } from "./table-of-contents"; declare const useTableOfContents: ({ contentRef, options }: { contentRef: MutableRefObject; options?: OptionsType | undefined; }) => NodeType | undefined; export default useTableOfContents;