UNPKG

@lobehub/ui

Version:

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

14 lines (13 loc) 386 B
import { FC } from 'react'; import { AProps } from "../../types"; import { CitationItem } from "../../types/citation"; export interface LinkProps extends AProps { 'aria-describedby'?: string; 'citations'?: CitationItem[]; 'data-footnote-ref'?: boolean; 'data-link'?: string; 'id'?: string; 'node'?: any; } declare const Link: FC<LinkProps>; export default Link;