UNPKG

@lobehub/ui

Version:

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

9 lines (8 loc) 244 B
import { type FC, type ReactNode } from 'react'; interface FootnotesProps { 'children': ReactNode; 'data-footnote-links'?: string; 'data-footnotes'?: boolean; } declare const Footnotes: FC<FootnotesProps>; export default Footnotes;