UNPKG

fumadocs-ui

Version:

The Radix UI version of Fumadocs UI

11 lines 544 B
import { ComponentProps } from "react"; import * as Primitive from "fumadocs-core/toc"; //#region src/components/toc/clerk.d.ts type TOCItemsProps = ComponentProps<'div'>; declare function TOCItems({ ref, className, children, ...props }: TOCItemsProps): import("react").JSX.Element; declare function TOCEmpty(): import("react").JSX.Element; declare function TOCItem({ item, ...props }: Primitive.TOCItemProps & { item: Primitive.TOCItemType; }): import("react").JSX.Element; //#endregion export { TOCEmpty, TOCItem, TOCItems, TOCItemsProps };