@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
10 lines (9 loc) • 339 B
TypeScript
/// <reference types="react" />
import { DivProps } from "../../types";
export interface SyntaxHighlighterProps extends DivProps {
children: string;
enableTransformer?: boolean;
language: string;
}
declare const SyntaxHighlighter: import("react").NamedExoticComponent<SyntaxHighlighterProps>;
export default SyntaxHighlighter;