UNPKG

plazbot

Version:

Official Plazbot SDK for creating AI agents for WhatsApp, portals, and developers.

8 lines (7 loc) 296 B
import type { CSSProperties } from 'react'; export interface MarkdownRendererProps { content: string; className?: string; style?: CSSProperties; } export declare function MarkdownRenderer({ content, className, style }: MarkdownRendererProps): import("react/jsx-runtime").JSX.Element;