UNPKG

@lobehub/ui

Version:

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

11 lines (10 loc) 453 B
import { ReactNode } from 'react'; import { HighlighterProps } from './type'; interface HighlighterFullFeaturedProps extends Omit<HighlighterProps, 'children' | 'bodyRender' | 'enableTransformer'> { content: string; setLanguage?: (language: string) => void; } export declare const HighlighterFullFeatured: import("react").NamedExoticComponent<HighlighterFullFeaturedProps & { children: ReactNode; }>; export default HighlighterFullFeatured;