react-native-langflow-chat
Version:
A native React Native component for integrating LangFlow chat with streaming support, citation bubbles, react-native-marked rendering, and customizable UI
14 lines • 449 B
TypeScript
import React from "react";
import { Citation } from "./Citation";
interface MarkdownRendererProps {
content: string;
style: any;
fontSize: number;
enableMarkdown?: boolean;
citations?: Citation[];
onCitationPress?: (citation: Citation) => void;
citationBubbleColor?: string;
}
declare const MarkdownRenderer: React.FC<MarkdownRendererProps>;
export default MarkdownRenderer;
//# sourceMappingURL=MarkdownRenderer.d.ts.map