import { ReactNode } from "react"; interface ScrollSpyProps { title: ReactNode; href: string; children?: { title: ReactNode; href: string; children?: { title: ReactNode; href: string; }[] | undefined; }[] | undefined; } export declare function ScrollSpy({ contents, htmlFor }: { contents: ScrollSpyProps[]; htmlFor: string; }): import("react/jsx-runtime").JSX.Element; export {};