UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

11 lines (10 loc) 382 B
/// <reference types="react" /> import { ThemeProps } from "../../hooks/useHighlight"; import { DivProps } from "../../types"; export interface StaticRendererProps extends DivProps { children: string; language: string; enableTransformer?: boolean; theme?: ThemeProps; } export declare const StaticRenderer: import("react").NamedExoticComponent<StaticRendererProps>;