fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
14 lines (13 loc) • 426 B
TypeScript
import { Collapsible } from "./ui/collapsible.js";
import { ComponentProps } from "react";
import { TOCItemType } from "fumadocs-core/toc";
//#region src/components/inline-toc.d.ts
interface InlineTocProps extends ComponentProps<typeof Collapsible> {
items: TOCItemType[];
}
declare function InlineTOC({
items,
...props
}: InlineTocProps): import("react").JSX.Element;
//#endregion
export { InlineTOC, InlineTocProps };