UNPKG

@lobehub/ui

Version:

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

17 lines (16 loc) 479 B
import { AProps } from "../../types/index.mjs"; import { CitationItem } from "../../types/citation.mjs"; import { FC } from "react"; //#region src/mdx/mdxComponents/Link.d.ts 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>; //#endregion export { Link, LinkProps }; //# sourceMappingURL=Link.d.mts.map