UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 293 B
import { ReactNode } from 'react'; interface FootnotesProps { 'children': ReactNode; 'data-footnote-links'?: string; 'data-footnotes'?: boolean; } declare const Footnotes: ({ children, ...res }: FootnotesProps) => import("react/jsx-runtime").JSX.Element; export default Footnotes;