export interface SemanticRendererProps { /** The markdown content to render */ content: string; /** Skip classification and render as plain markdown (useful for streaming) */ isStreaming?: boolean; /** CSS class for the wrapper */ className?: string; /** Custom fallback renderer for unclassified content and inline markdown */ fallback?: React.ComponentType<{ content: string; }>; } export declare const SemanticRenderer: import("react").MemoExoticComponent<({ content, isStreaming, className, fallback: Fallback, }: SemanticRendererProps) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=SemanticRenderer.d.ts.map