UNPKG

@lobehub/ui

Version:

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

14 lines (13 loc) 427 B
import type { CSSProperties } from 'react'; import type { BuiltinTheme } from 'shiki'; interface StreamRendererProps { children: string; className?: string; enableTransformer?: boolean; fallbackClassName?: string; language: string; style?: CSSProperties; theme?: BuiltinTheme; } declare const StreamRenderer: import("react").NamedExoticComponent<StreamRendererProps>; export default StreamRenderer;